Skip to content

Commit

Permalink
Fix grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
avakar committed Jul 10, 2024
1 parent a7b4f39 commit bcfe2d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ assert(bw_t::keys[0] == "black"sv);
assert(bw_t::keys[1] == "white"sv);
```
To enumerate the atoms instead of the keys, call `atom::iota()`. It returns a
view (as in `ranges::view`) of the type's atoms (in the sorted order).
To enumerate atoms instead of keys, call `atom::iota()`. It returns a view (as
in `ranges::view`) of the type's atoms (in the sorted order).
```cpp
for (bw_t a: bw_t::iota())
Expand Down

0 comments on commit bcfe2d9

Please sign in to comment.