Skip to content

Commit 14467f3

Browse files
authored
fix(std/fs): fix Path.MAX_LEN
1 parent d31573b commit 14467f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/std/src/fs/Path.ri

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import ../mem;
99
import ../conv;
1010

1111
public struct Path {
12-
public alias max_path_len := libc.MAX_PATH_LEN;
12+
public alias MAX_LEN := libc.MAX_PATH_LEN;
1313
public const SEPARATOR := #if _WINDOWS_ b'\\' #else b'/' #endif;
1414
public static separatorStr := #if _WINDOWS_ "\\" #else "/" #endif;
1515
public static delimiter := #if _WINDOWS_ ";" #else ":" #endif;

0 commit comments

Comments
 (0)