Minor fix.

This commit is contained in:
Georg Brandl 2016-02-13 09:46:00 +01:00
parent 3693b34730
commit 75e11563cb
1 changed files with 4 additions and 4 deletions

View File

@ -95,7 +95,7 @@ consecutive underscores.)
* Ada: single, only between digits [8]_
* C# (open proposal for 7.0): multiple, only between digits [6]_
* C++ (C++14): single, between digits (different separator chosen) [1]_
* C++14: single, between digits (different separator chosen) [1]_
* D: multiple, anywhere, including trailing [2]_
* Java: multiple, only between digits [7]_
* Julia: single, only between digits (but not in float exponent parts)
@ -144,9 +144,9 @@ behavior can lead to unexpected effects which are not possible with
underscores. Also, no other language is known to use this rule,
except for languages that generally disregard any whitespace.
C++14 introduces apostrophes for grouping (because underscores introduce
ambiguity with user-defined literals), which is not considered because of the
use in Python's string literals. [1]_
C++14 introduces apostrophes for grouping (because underscores
introduce ambiguity with user-defined literals), which is not
considered because of the use in Python's string literals. [1]_
Open Proposals