Explorar el Código

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 hace 1 año
padre
commit
b88b377c0c
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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