Skip to content

Commit 0554f5d

Browse files
authored
typos
1 parent 24881a5 commit 0554f5d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/stdlib_bitsets.fypp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1243,7 +1243,7 @@ module stdlib_bitsets
12431243
elemental module subroutine clear_bit_64(self, pos)
12441244
!! Version: experimental
12451245
!!
1246-
!! Sets to zero the bit at `pos` position in `self`. If 'pos` is less than
1246+
!! Sets to zero the bit at `pos` position in `self`. If `pos` is less than
12471247
!! zero or greater than `bits(self)-1` it is ignored.
12481248
class(bitset_64), intent(inout) :: self
12491249
integer(bits_kind), intent(in) :: pos
@@ -1529,7 +1529,7 @@ module stdlib_bitsets
15291529
!! Version: experimental
15301530
!!
15311531
!! Sets the bits in `set1` to the bitwise `and` of the original bits in `set1`
1532-
!! and `set2`. The sets mmust have the same number of bits
1532+
!! and `set2`. The sets must have the same number of bits
15331533
!! otherwise the result is undefined.
15341534
!!
15351535
!!#### Example
@@ -1623,7 +1623,7 @@ module stdlib_bitsets
16231623
!! Version: experimental
16241624
!!
16251625
!! Creates a new bitset, `new`, from a range, `start_pos` to `stop_pos`, in
1626-
!! bitset `old`. If 'start_pos` is greater than `stop_pos` the new bitset is
1626+
!! bitset `old`. If `start_pos` is greater than `stop_pos` the new bitset is
16271627
!! empty. If `start_pos` is less than zero or `stop_pos` is greater than
16281628
!! `bits(old)-1` then if `status` is present it has the value
16291629
!! `index_invalid_error` and `new` is undefined, otherwise processing stops
@@ -1768,7 +1768,7 @@ module stdlib_bitsets
17681768
elemental module function eqv_large(set1, set2) result(eqv)
17691769
!! Version: experimental
17701770
!!
1771-
!! Returns `.true`. if all bits in `set1` and `set2` have the same value,
1771+
!! Returns `.true.` if all bits in `set1` and `set2` have the same value,
17721772
!! `.false.` otherwise. The sets must have the same number of bits
17731773
!! otherwise the result is undefined.
17741774
!!
@@ -1861,7 +1861,7 @@ module stdlib_bitsets
18611861
!! Version: experimental
18621862
!!
18631863
!! Returns `.true.` if the bits in `set1` and `set2` differ and the
1864-
!! highest order different bit is set to 1 in `set1` and to 0 in `set2`.
1864+
!! highest order different bit is set to 1 in `set1` and to 0 in `set2`,
18651865
!! `.false.` otherwise. The sets must have the same number of bits
18661866
!! otherwise the result is undefined.
18671867
!!

0 commit comments

Comments
 (0)