diff options
author | Ori Bernstein <ori@eigenstate.org> | 2014-09-06 21:18:34 -0400 |
---|---|---|
committer | Ori Bernstein <ori@eigenstate.org> | 2014-09-06 21:18:34 -0400 |
commit | d0331c3cfb6f27afe416b9cdb7b15e18b9083e3e (patch) | |
tree | 4da43f1083896366ddf65288276a7703f4c5d1fa /libstd/bitset.myr | |
parent | ebdd2476cc2b5f0dea539efeae5151ada62c1ec6 (diff) | |
download | mc-d0331c3cfb6f27afe416b9cdb7b15e18b9083e3e.tar.gz |
Fix missing methods.
Diffstat (limited to 'libstd/bitset.myr')
-rw-r--r-- | libstd/bitset.myr | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libstd/bitset.myr b/libstd/bitset.myr index 1d3b924..0cf8bbf 100644 --- a/libstd/bitset.myr +++ b/libstd/bitset.myr @@ -21,7 +21,7 @@ pkg std = const bsintersect : (a : bitset#, b : bitset# -> void) const bsunion : (a : bitset#, b : bitset# -> void) const bseq : (a : bitset#, b : bitset# -> bool) - const bsissub : (a : bitset#, b : bitset# -> bool) + const bsissubset : (a : bitset#, b : bitset# -> bool) const bsclear : (bs : bitset# -> bitset#) ;; |