Skip to content

Commit daef964

Browse files
authored
Merge pull request #4307 from rosenbluh/patch-1
update pi approximation
2 parents ceee519 + 0e2e69c commit daef964

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/cpp/auto-cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ The **`auto`** initialization expression can take several forms:
4545

4646
- Universal initialization syntax, such as `auto a { 42 };`.
4747
- Assignment syntax, such as `auto b = 0;`.
48-
- Universal assignment syntax, which combines the two previous forms, such as `auto c = { 3.14156 };`.
48+
- Universal assignment syntax, which combines the two previous forms, such as `auto c = { 3.14159 };`.
4949
- Direct initialization, or constructor-style syntax, such as `auto d( 1.41421f );`.
5050

5151
For more information, see [Initializers](../cpp/initializers.md) and the code examples later in this document.

0 commit comments

Comments
 (0)