File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Utils/Containers/Internal Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -84,6 +84,6 @@ validTipPrefix :: Prefix -> Bool
84
84
-- Last 5 bits of the prefix must be zero for 32 bit arches.
85
85
validTipPrefix p = (0x0000001F .&. p) == 0
86
86
#else
87
- -- Last 6 bits of the prefix must be zero 64 bit anches .
87
+ -- Last 6 bits of the prefix must be zero for 64 bit arches .
88
88
validTipPrefix p = (0x000000000000003F .&. p) == 0
89
89
#endif
Original file line number Diff line number Diff line change @@ -682,7 +682,7 @@ isSubsetOf t1 t2
682
682
--
683
683
-- This function is structured very much like `difference`, `union`,
684
684
-- and `intersection`. Whereas the bounds proofs for those in Blelloch
685
- -- et al needed to accound for both "split work" and "merge work", we
685
+ -- et al needed to account for both "split work" and "merge work", we
686
686
-- only have to worry about split work here, which is the same as in
687
687
-- those functions.
688
688
isSubsetOfX :: Ord a => Set a -> Set a -> Bool
Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ buildQ (BQB hi lo) = BQ (BQB hi' lo') where
96
96
lo' = (lo1 `shiftRL` zeros) .|. (hi1 `shiftLL` (wordSize - zeros))
97
97
hi' = hi1 `shiftRL` zeros
98
98
99
- -- Test if the queue is empty, which occurs when theres
99
+ -- Test if the queue is empty, which occurs when there's
100
100
-- nothing left but a guard bit in the least significant
101
101
-- place.
102
102
nullQ :: BitQueue -> Bool
You can’t perform that action at this time.
0 commit comments