From Jason Turner

[ostream.inserters.character]

Diff to HTML by rtfpessoa

tmp/tmpanbdm8o2/{from.md → to.md} RENAMED
@@ -15,15 +15,15 @@ template<class traits>
15
  basic_ostream<char, traits>& operator<<(basic_ostream<char, traits>& out, unsigned char c);
16
  ```
17
 
18
  *Effects:* Behaves as a formatted output
19
  function [[ostream.formatted.reqmts]] of `out`. Constructs a character
20
- sequence `seq`. If `c` has type `char` and the character type of the
21
- stream is not `char`, then `seq` consists of `out.widen(c)`; otherwise
22
- `seq` consists of `c`. Determines padding for `seq` as described
23
- in  [[ostream.formatted.reqmts]]. Inserts `seq` into `out`. Calls
24
- `os.width(0)`.
25
 
26
  *Returns:* `out`.
27
 
28
  ``` cpp
29
  template<class charT, class traits>
 
15
  basic_ostream<char, traits>& operator<<(basic_ostream<char, traits>& out, unsigned char c);
16
  ```
17
 
18
  *Effects:* Behaves as a formatted output
19
  function [[ostream.formatted.reqmts]] of `out`. Constructs a character
20
+ sequence `seq`. If `c` has type `char` and the character container type
21
+ of the stream is not `char`, then `seq` consists of `out.widen(c)`;
22
+ otherwise `seq` consists of `c`. Determines padding for `seq` as
23
+ described in  [[ostream.formatted.reqmts]]. Inserts `seq` into `out`.
24
+ Calls `os.width(0)`.
25
 
26
  *Returns:* `out`.
27
 
28
  ``` cpp
29
  template<class charT, class traits>