From Jason Turner

[fs.path.assign]

Diff to HTML by rtfpessoa

tmp/tmpadxmts8f/{from.md → to.md} RENAMED
@@ -1,6 +1,6 @@
1
- ##### `path` assignments <a id="fs.path.assign">[[fs.path.assign]]</a>
2
 
3
  ``` cpp
4
  path& operator=(const path& p);
5
  ```
6
 
@@ -40,12 +40,12 @@ template <class Source>
40
  path& assign(const Source& source);
41
  template<class InputIterator>
42
  path& assign(InputIterator first, InputIterator last);
43
  ```
44
 
45
- *Effects:* Let `s` be the effective range of `source` ([[fs.path.req]])
46
- or the range \[`first`, `last`), with the encoding converted if
47
- required ([[fs.path.cvt]]). Finds the detected-format of
48
- `s` ([[fs.path.fmt.cvt]]) and sets the pathname in that format to `s`.
49
 
50
  *Returns:* `*this`.
51
 
 
1
+ ##### Assignments <a id="fs.path.assign">[[fs.path.assign]]</a>
2
 
3
  ``` cpp
4
  path& operator=(const path& p);
5
  ```
6
 
 
40
  path& assign(const Source& source);
41
  template<class InputIterator>
42
  path& assign(InputIterator first, InputIterator last);
43
  ```
44
 
45
+ *Effects:* Let `s` be the effective range of `source` [[fs.path.req]] or
46
+ the range \[`first`, `last`), with the encoding converted if
47
+ required [[fs.path.cvt]]. Finds the detected-format of `s`
48
+ [[fs.path.fmt.cvt]] and sets the pathname in that format to `s`.
49
 
50
  *Returns:* `*this`.
51