aboutsummaryrefslogtreecommitdiff
path: root/docs/paths.md
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-03-05 00:22:40 -0500
committerBruce Hill <bruce@bruce-hill.com>2025-03-05 00:22:40 -0500
commitdba2d62d15d8233c189a109f97d7cda70fa7f6b7 (patch)
treee30d17414553a45f006a6a5d6f05dcd2856ee386 /docs/paths.md
parent0a3ad8ba914ab42ebbb88a3d955f71d71d581fc1 (diff)
Fix links
Diffstat (limited to 'docs/paths.md')
-rw-r--r--docs/paths.md52
1 files changed, 26 insertions, 26 deletions
diff --git a/docs/paths.md b/docs/paths.md
index d361b832..730eb496 100644
--- a/docs/paths.md
+++ b/docs/paths.md
@@ -37,32 +37,32 @@ intended. Paths can be created from text with slashes using
## Path Methods
-- [`func append(path: Path, text: Text, permissions: Int32 = 0o644[32] -> Void)`](#`append)
-- [`func append_bytes(path: Path, bytes: [Byte], permissions: Int32 = 0o644[32] -> Void)`](#`append_bytes)
-- [`func base_name(path: Path -> Text)`](#`base_name)
-- [`func by_line(path: Path -> func(->Text?)?)`](#`by_line)
-- [`func children(path: Path, include_hidden=no -> [Path])`](#`children)
-- [`func create_directory(path: Path, permissions=0o755[32] -> Void)`](#`create_directory)
-- [`func exists(path: Path -> Bool)`](#`exists)
-- [`func extension(path: Path, full=yes -> Text)`](#`extension)
-- [`func files(path: Path, include_hidden=no -> [Path])`](#`files)
-- [`func glob(path: Path -> [Path])`](#`glob)
-- [`func is_directory(path: Path, follow_symlinks=yes -> Bool)`](#`is_directory)
-- [`func is_file(path: Path, follow_symlinks=yes -> Bool)`](#`is_file)
-- [`func is_socket(path: Path, follow_symlinks=yes -> Bool)`](#`is_socket)
-- [`func is_symlink(path: Path -> Bool)`](#`is_symlink)
-- [`func parent(path: Path -> Path)`](#`parent)
-- [`func read(path: Path -> Text?)`](#`read)
-- [`func read_bytes(path: Path -> [Byte]?)`](#`read_bytes)
-- [`func relative(path: Path, relative_to=(./) -> Path)`](#`relative)
-- [`func remove(path: Path, ignore_missing=no -> Void)`](#`remove)
-- [`func resolved(path: Path, relative_to=(./) -> Path)`](#`resolved)
-- [`func subdirectories(path: Path, include_hidden=no -> [Path])`](#`subdirectories)
-- [`func unique_directory(path: Path -> Path)`](#`unique_directory)
-- [`func write(path: Path, text: Text, permissions=0o644[32] -> Void)`](#`write)
-- [`func write(path: Path, bytes: [Byte], permissions=0o644[32] -> Void)`](#`write_bytes)
-- [`func write_unique(path: Path, text: Text -> Path)`](#`write_unique)
-- [`func write_unique_bytes(path: Path, bytes: [Byte] -> Path)`](#`write_unique_bytes)
+- [`func append(path: Path, text: Text, permissions: Int32 = 0o644[32] -> Void)`](#append)
+- [`func append_bytes(path: Path, bytes: [Byte], permissions: Int32 = 0o644[32] -> Void)`](#append_bytes)
+- [`func base_name(path: Path -> Text)`](#base_name)
+- [`func by_line(path: Path -> func(->Text?)?)`](#by_line)
+- [`func children(path: Path, include_hidden=no -> [Path])`](#children)
+- [`func create_directory(path: Path, permissions=0o755[32] -> Void)`](#create_directory)
+- [`func exists(path: Path -> Bool)`](#exists)
+- [`func extension(path: Path, full=yes -> Text)`](#extension)
+- [`func files(path: Path, include_hidden=no -> [Path])`](#files)
+- [`func glob(path: Path -> [Path])`](#glob)
+- [`func is_directory(path: Path, follow_symlinks=yes -> Bool)`](#is_directory)
+- [`func is_file(path: Path, follow_symlinks=yes -> Bool)`](#is_file)
+- [`func is_socket(path: Path, follow_symlinks=yes -> Bool)`](#is_socket)
+- [`func is_symlink(path: Path -> Bool)`](#is_symlink)
+- [`func parent(path: Path -> Path)`](#parent)
+- [`func read(path: Path -> Text?)`](#read)
+- [`func read_bytes(path: Path -> [Byte]?)`](#read_bytes)
+- [`func relative(path: Path, relative_to=(./) -> Path)`](#relative)
+- [`func remove(path: Path, ignore_missing=no -> Void)`](#remove)
+- [`func resolved(path: Path, relative_to=(./) -> Path)`](#resolved)
+- [`func subdirectories(path: Path, include_hidden=no -> [Path])`](#subdirectories)
+- [`func unique_directory(path: Path -> Path)`](#unique_directory)
+- [`func write(path: Path, text: Text, permissions=0o644[32] -> Void)`](#write)
+- [`func write(path: Path, bytes: [Byte], permissions=0o644[32] -> Void)`](#write_bytes)
+- [`func write_unique(path: Path, text: Text -> Path)`](#write_unique)
+- [`func write_unique_bytes(path: Path, bytes: [Byte] -> Path)`](#write_unique_bytes)
### `append`