summaryrefslogtreecommitdiff
path: root/otherlibs/unix/unix.mli
diff options
context:
space:
mode:
Diffstat (limited to 'otherlibs/unix/unix.mli')
-rw-r--r--otherlibs/unix/unix.mli6
1 files changed, 3 insertions, 3 deletions
diff --git a/otherlibs/unix/unix.mli b/otherlibs/unix/unix.mli
index d5f4cb9839..1498a85e9e 100644
--- a/otherlibs/unix/unix.mli
+++ b/otherlibs/unix/unix.mli
@@ -995,11 +995,11 @@ val close_process_full :
val symlink : ?to_dir: (* thwart tools/sync_stdlib_docs *) bool ->
string -> string -> unit
(** [symlink ?to_dir src dst] creates the file [dst] as a symbolic link
- to the file [src]. On Windows, [to_dir] indicates if the symbolic link
+ to the file [src]. On Windows, [~to_dir] indicates if the symbolic link
points to a directory or a file; if omitted, [symlink] examines [src]
using [stat] and picks appropriately, if [src] does not exist then [false]
- is assumed (for this reason, it is recommended that the [to_dir] parameter
- be specified in new code). On Unix, [to_dir] is ignored.
+ is assumed (for this reason, it is recommended that the [~to_dir] parameter
+ be specified in new code). On Unix, [~to_dir] is ignored.
Windows symbolic links are available in Windows Vista onwards. There are some
important differences between Windows symlinks and their POSIX counterparts.