Skip to content

Commit

Permalink
readme: cosmetic fix
Browse files Browse the repository at this point in the history
  • Loading branch information
khva committed Jan 29, 2023
1 parent fa87774 commit 20f4d95
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 @@ -44,11 +44,11 @@ stor.push(5, "fourth"); // пара {1, "first"} будет замещена н

const auto first = stor.find(1);
if (!first)
std::cout << "item 1 does not exist" << std::endl;
std::cout << "item 1 does not exist" << std::endl;

const auto second = stor.find(2);
if (second)
std::cout << "item 2 has value: " << *second << std::endl;
std::cout << "item 2 has value: " << *second << std::endl;
```
В результате выполнения будет выведено:
```
Expand Down

0 comments on commit 20f4d95

Please sign in to comment.