From Jason Turner

[complex.ops]

Diff to HTML by rtfpessoa

tmp/tmpw35uu2fn/{from.md → to.md} RENAMED
@@ -85,11 +85,11 @@ were implemented as follows:
85
  ``` cpp
86
  basic_ostringstream<charT, traits> s;
87
  s.flags(o.flags());
88
  s.imbue(o.getloc());
89
  s.precision(o.precision());
90
- s << '(' << x.real() << "," << x.imag() << ')';
91
  return o << s.str();
92
  ```
93
 
94
  [*Note 1*: In a locale in which comma is used as a decimal point
95
  character, the use of comma as a field separator can be ambiguous.
 
85
  ``` cpp
86
  basic_ostringstream<charT, traits> s;
87
  s.flags(o.flags());
88
  s.imbue(o.getloc());
89
  s.precision(o.precision());
90
+ s << '(' << x.real() << ',' << x.imag() << ')';
91
  return o << s.str();
92
  ```
93
 
94
  [*Note 1*: In a locale in which comma is used as a decimal point
95
  character, the use of comma as a field separator can be ambiguous.