Skip to content

Commit 4ffacb1

Browse files
committed
FIX: typo in README.md#shuffled
1 parent 7447950 commit 4ffacb1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,7 @@ The below outputs `0 2 4 3 1`.
547547

548548
```c++
549549
unordered_set<int> nums{4, 0, 2, 1, 3};
550-
for (auto&& i : sorted(nums)) {
550+
for (auto&& i : shuffled(nums)) {
551551
cout << i << '\n';
552552
}
553553
```

0 commit comments

Comments
 (0)