Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/cpp/auto-cpp.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ In the previous example, myAuto is an int, not an int reference, so the output i

## Type deduction with braced initializers (C++14)

The following code exmample shows how to intialize an auto variable using braces. Note the difference between B and C and between A and E.
The following code example shows how to initialize an auto variable using braces. Note the difference between B and C and between A and E.

```cpp
#include <initializer_list>
Expand Down Expand Up @@ -229,4 +229,4 @@ int main()
[Declarations and Definitions](declarations-and-definitions-cpp.md)<br/>
[Examples of Lambda Expressions](../cpp/examples-of-lambda-expressions.md)<br/>
[Initializers](../cpp/initializers.md)<br/>
[decltype](../cpp/decltype-cpp.md)
[decltype](../cpp/decltype-cpp.md)