From Jason Turner

[fs.path.decompose]

Diff to HTML by rtfpessoa

tmp/tmpuks2ojco/{from.md → to.md} RENAMED
@@ -99,13 +99,13 @@ path(".bar").extension(); // yields "" and stem() is ".bar"
99
  path("..bar").extension(); // yields ".bar" and stem() is "."
100
  ```
101
 
102
  — *end example*]
103
 
104
- [*Note 4*: The period is included in the return value so that it is
105
  possible to distinguish between no extension and an empty
106
  extension. — *end note*]
107
 
108
- [*Note 5*: On non-POSIX operating systems, for a path `p`, it may not
109
- be the case that `p.stem() + p.extension() == p.filename()`, even though
110
- the generic format pathnames are the same. — *end note*]
111
 
 
99
  path("..bar").extension(); // yields ".bar" and stem() is "."
100
  ```
101
 
102
  — *end example*]
103
 
104
+ [*Note 3*: The period is included in the return value so that it is
105
  possible to distinguish between no extension and an empty
106
  extension. — *end note*]
107
 
108
+ [*Note 4*: On non-POSIX operating systems, for a path `p`, it is
109
+ possible that `p.stem() + p.extension() == p.filename()` is `false`,
110
+ even though the generic format pathnames are the same. — *end note*]
111