diff options
| author | Zuhaitz <zuhaitz.zechhub@gmail.com> | 2026-01-26 00:39:31 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-26 00:39:31 +0000 |
| commit | ca08979910e5a234a2423e4448ad0e284bf4f508 (patch) | |
| tree | e09702f7b0850feb00a6af7f315bff7448c2ed26 /docs/std/path.md | |
| parent | 6bef876bf900458a36260ca3fe96e23b06749d74 (diff) | |
| parent | 97d0583c92c733aa8497a99f5267d50151f6e965 (diff) | |
Merge pull request #132 from Burnett01/fix/var-const-remains-in-examples
Housekeeping: Fix var/const remains in examples and docs
Diffstat (limited to 'docs/std/path.md')
| -rw-r--r-- | docs/std/path.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/std/path.md b/docs/std/path.md index 0be30fd..798144a 100644 --- a/docs/std/path.md +++ b/docs/std/path.md @@ -8,8 +8,8 @@ import "std/path.zc" fn main() { - var p = Path::new("/home/user"); - var full_path = p.join("docs/file.txt"); + let p = Path::new("/home/user"); + let full_path = p.join("docs/file.txt"); println "Full path: {full_path.c_str()}"; |
