Commit 3c088a04 authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Fixed a typo in the tutorial on for-loops

parent 20ec33e1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -110,7 +110,7 @@ Algorithms::unrolledFor< int, 0, Size, 16 >( ... );
staticFor< int, 0, N >( f );
```

which is results in the following sequence of function calls:
which results in the following sequence of function calls:

```cpp
f( std::integral_constant< 0 >{} );