Merge remote-tracking branch 'origin/documentation' into documentation

This commit is contained in:
Niels Lohmann 2022-05-10 19:42:05 +02:00
commit 02ff16f645
No known key found for this signature in database
GPG Key ID: 7F3CEA63AE251B69

View File

@ -113,7 +113,7 @@ for (auto& [key, val] : j_object.items())
```cpp
json j = {1, 2, 3, 4};
for (auto it = j.begin(); it != j.end(); ++it)
for (auto it = j.rbegin(); it != j.rend(); ++it)
{
std::cout << *it << std::endl;
}