| ... | @@ -460,7 +460,7 @@ pub fn resolve(allocator: Allocator, paths: []const []const u8) ![]u8 { | ... | @@ -460,7 +460,7 @@ pub fn resolve(allocator: Allocator, paths: []const []const u8) ![]u8 { |
| 460 | } | 460 | } |
| 461 | | 461 | |
| 462 | /// This function is like a series of `cd` statements executed one after another. | 462 | /// This function is like a series of `cd` statements executed one after another. |
| 463 | /// It resolves "." and "..". | 463 | /// It resolves "." and "..", but will not convert relative path to absolute path, use std.fs.Dir.realpath instead. |
| 464 | /// The result does not have a trailing path separator. | 464 | /// The result does not have a trailing path separator. |
| 465 | /// Each drive has its own current working directory. | 465 | /// Each drive has its own current working directory. |
| 466 | /// Path separators are canonicalized to '\\' and drives are canonicalized to capital letters. | 466 | /// Path separators are canonicalized to '\\' and drives are canonicalized to capital letters. |
| ... | @@ -637,7 +637,7 @@ pub fn resolveWindows(allocator: Allocator, paths: []const []const u8) ![]u8 { | ... | @@ -637,7 +637,7 @@ pub fn resolveWindows(allocator: Allocator, paths: []const []const u8) ![]u8 { |
| 637 | } | 637 | } |
| 638 | | 638 | |
| 639 | /// This function is like a series of `cd` statements executed one after another. | 639 | /// This function is like a series of `cd` statements executed one after another. |
| 640 | /// It resolves "." and "..". | 640 | /// It resolves "." and "..", but will not convert relative path to absolute path, use std.fs.Dir.realpath instead. |
| 641 | /// The result does not have a trailing path separator. | 641 | /// The result does not have a trailing path separator. |
| 642 | /// This function does not perform any syscalls. Executing this series of path | 642 | /// This function does not perform any syscalls. Executing this series of path |
| 643 | /// lookups on the actual filesystem may produce different results due to | 643 | /// lookups on the actual filesystem may produce different results due to |