summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/ref/misc-modules.texi6
-rw-r--r--doc/sources/unix.texi2
-rw-r--r--module/ice-9/ftw.scm8
3 files changed, 8 insertions, 8 deletions
diff --git a/doc/ref/misc-modules.texi b/doc/ref/misc-modules.texi
index db90c419a..35fe564b9 100644
--- a/doc/ref/misc-modules.texi
+++ b/doc/ref/misc-modules.texi
@@ -1038,7 +1038,7 @@ Reference Manual}).
@sp 1
@defun ftw startname proc ['hash-size n]
-Walk the filesystem tree descending from @var{startname}, calling
+Walk the file system tree descending from @var{startname}, calling
@var{proc} for each file and directory.
Hard links and symbolic links are followed. A file or directory is
@@ -1094,7 +1094,7 @@ use @code{throw} or similar to escape.
@defun nftw startname proc ['chdir] ['depth] ['hash-size n] ['mount] ['physical]
-Walk the filesystem tree starting at @var{startname}, calling
+Walk the file system tree starting at @var{startname}, calling
@var{proc} for each file and directory. @code{nftw} has extra
features over the basic @code{ftw} described above.
@@ -1177,7 +1177,7 @@ Set the size of the hash table used to track items already visited.
@item @code{mount}
Don't cross a mount point, meaning only visit items on the same
-filesystem as @var{startname} (ie.@: the same @code{stat:dev}).
+file system as @var{startname} (ie.@: the same @code{stat:dev}).
@item @code{physical}
Don't follow symbolic links, instead report them to @var{proc} as
diff --git a/doc/sources/unix.texi b/doc/sources/unix.texi
index e8a189c5b..0ef894a42 100644
--- a/doc/sources/unix.texi
+++ b/doc/sources/unix.texi
@@ -12,7 +12,7 @@ be required to make them available.
* Ports and descriptors:: Ports, file descriptors and how they
interact.
* Extended I/O:: Reading and writing to ports.
-* File system:: Working in a hierarchical filesystem.
+* File system:: Working in a hierarchical file system.
* User database:: Information about users from system databases.
* Processes:: Information and control of Unix processes.
* Terminals:: Terminals and pseudo-terminals.
diff --git a/module/ice-9/ftw.scm b/module/ice-9/ftw.scm
index ce2fb165e..e6ac0b462 100644
--- a/module/ice-9/ftw.scm
+++ b/module/ice-9/ftw.scm
@@ -1,4 +1,4 @@
-;;;; ftw.scm --- filesystem tree walk
+;;;; ftw.scm --- file system tree walk
;;;; Copyright (C) 2002, 2003, 2006 Free Software Foundation, Inc.
;;;;
@@ -104,7 +104,7 @@
;; entered directory.
;;
;; * Procedure: (ftw filename proc . options)
-;; Do a filesystem tree walk starting at FILENAME using PROC.
+;; Do a file system tree walk starting at FILENAME using PROC.
;;
;; The `ftw' procedure calls the callback procedure given in the
;; parameter PROC for every item which is found in the directory
@@ -140,7 +140,7 @@
;; returned as the return value of `ftw'.
;;
;; * Procedure: (nftw filename proc . control-flags)
-;; Do a new-style filesystem tree walk starting at FILENAME using PROC.
+;; Do a new-style file system tree walk starting at FILENAME using PROC.
;; Various optional CONTROL-FLAGS alter the default behavior.
;;
;; The `nftw' procedures works like the `ftw' procedures. It calls
@@ -165,7 +165,7 @@
;;
;; mount'
;; The callback procedure is only called for items which are on
-;; the same mounted filesystem as the directory given as the
+;; the same mounted file system as the directory given as the
;; FILENAME parameter to `nftw'.
;;
;; chdir'