@@ -1243,7 +1243,7 @@ module stdlib_bitsets
1243
1243
elemental module subroutine clear_bit_64(self, pos)
1244
1244
!! Version: experimental
1245
1245
!!
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
1247
1247
!! zero or greater than `bits(self)-1` it is ignored.
1248
1248
class(bitset_64), intent(inout) :: self
1249
1249
integer(bits_kind), intent(in) :: pos
@@ -1529,7 +1529,7 @@ module stdlib_bitsets
1529
1529
!! Version: experimental
1530
1530
!!
1531
1531
!! 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
1533
1533
!! otherwise the result is undefined.
1534
1534
!!
1535
1535
!!#### Example
@@ -1623,7 +1623,7 @@ module stdlib_bitsets
1623
1623
!! Version: experimental
1624
1624
!!
1625
1625
!! 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
1627
1627
!! empty. If `start_pos` is less than zero or `stop_pos` is greater than
1628
1628
!! `bits(old)-1` then if `status` is present it has the value
1629
1629
!! `index_invalid_error` and `new` is undefined, otherwise processing stops
@@ -1768,7 +1768,7 @@ module stdlib_bitsets
1768
1768
elemental module function eqv_large(set1, set2) result(eqv)
1769
1769
!! Version: experimental
1770
1770
!!
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,
1772
1772
!! `.false.` otherwise. The sets must have the same number of bits
1773
1773
!! otherwise the result is undefined.
1774
1774
!!
@@ -1861,7 +1861,7 @@ module stdlib_bitsets
1861
1861
!! Version: experimental
1862
1862
!!
1863
1863
!! 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`,
1865
1865
!! `.false.` otherwise. The sets must have the same number of bits
1866
1866
!! otherwise the result is undefined.
1867
1867
!!
0 commit comments