We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84e35d6 commit 0e2e69cCopy full SHA for 0e2e69c
docs/cpp/auto-cpp.md
@@ -45,7 +45,7 @@ The **`auto`** initialization expression can take several forms:
45
46
- Universal initialization syntax, such as `auto a { 42 };`.
47
- Assignment syntax, such as `auto b = 0;`.
48
-- Universal assignment syntax, which combines the two previous forms, such as `auto c = { 3.14156 };`.
+- Universal assignment syntax, which combines the two previous forms, such as `auto c = { 3.14159 };`.
49
- Direct initialization, or constructor-style syntax, such as `auto d( 1.41421f );`.
50
51
For more information, see [Initializers](../cpp/initializers.md) and the code examples later in this document.
0 commit comments