Преглед изворни кода

Documentation typo to a backslash on Windows

While working on other changes I noticed that
https://elv.sh/ref/path.html#path:separator used a double backslash for
the Windows example while it should have used a single backslash.
Kurtis Rader пре 1 година
родитељ
комит
b88b377c0c
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      pkg/mods/path/path.go

+ 1 - 1
pkg/mods/path/path.go

@@ -38,7 +38,7 @@ var Ns = eval.BuildNsNamed("path").
 
 //elvdoc:var separator
 //
-// OS-specific path separator. Forward slash (`/`) on UNIX and backslash (`\\`)
+// OS-specific path separator. Forward slash (`/`) on UNIX and backslash (`\`)
 // on Windows. This variable is read-only.
 
 //elvdoc:fn abs