| OLD | NEW |
| 1 A comprehensive, cross-platform path manipulation library for Dart. | 1 A comprehensive, cross-platform path manipulation library for Dart. |
| 2 | 2 |
| 3 The pathos library provides common operations for manipulating file paths: | 3 The pathos library provides common operations for manipulating file paths: |
| 4 joining, splitting, normalizing, etc. | 4 joining, splitting, normalizing, etc. |
| 5 | 5 |
| 6 We've tried very hard to make this library do the "right" thing on whatever | 6 We've tried very hard to make this library do the "right" thing on whatever |
| 7 platform you run it on. When you use the top-level functions, it will assume | 7 platform you run it on. When you use the top-level functions, it will assume |
| 8 the host OS's path style and work with that. If you want to specifically work | 8 the host OS's path style and work with that. If you want to specifically work |
| 9 with paths of a specific style, you can construct a `path.Builder` for that | 9 with paths of a specific style, you can construct a `path.Builder` for that |
| 10 style. | 10 style. |
| (...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 * It can accurately tell if a path is absolute based on drive-letters or UNC | 303 * It can accurately tell if a path is absolute based on drive-letters or UNC |
| 304 prefix. | 304 prefix. |
| 305 | 305 |
| 306 * It understands that "/foo" is not an absolute path on Windows. | 306 * It understands that "/foo" is not an absolute path on Windows. |
| 307 | 307 |
| 308 * It knows that "C:\foo\one.txt" and "c:/foo\two.txt" are two files in the | 308 * It knows that "C:\foo\one.txt" and "c:/foo\two.txt" are two files in the |
| 309 same directory. | 309 same directory. |
| 310 | 310 |
| 311 If you find a problem, surprise or something that's unclear, please don't | 311 If you find a problem, surprise or something that's unclear, please don't |
| 312 hesitate to [file a bug](http://dartbug.com/new) and let us know. | 312 hesitate to [file a bug](http://dartbug.com/new) and let us know. |
| OLD | NEW |