Skip to content

Commit 9b84347

Browse files
authored
Line 354: thw/the
1 parent 44b1e81 commit 9b84347

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/cpp/functions-cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ There are various ways to return more than one value from a function:
351351
}
352352
```
353353
354-
1. **Visual Studio 2017 version 15.3 and later** (available with [`/std:c++17`](../build/reference/std-specify-language-standard-version.md)): Use structured bindings. The advantage of structured bindings is that the variables that store the return values are initialized at the same time they are declared, which in some cases can be significantly more efficient. In thw statement `auto[x, y, z] = f();` the brackets introduce and initialize names that are in scope for the entire function block.
354+
1. **Visual Studio 2017 version 15.3 and later** (available with [`/std:c++17`](../build/reference/std-specify-language-standard-version.md)): Use structured bindings. The advantage of structured bindings is that the variables that store the return values are initialized at the same time they are declared, which in some cases can be significantly more efficient. In the statement `auto[x, y, z] = f();` the brackets introduce and initialize names that are in scope for the entire function block.
355355
356356
```cpp
357357
#include <tuple>

0 commit comments

Comments
 (0)