aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorferivoz <72023087+ferivoz@users.noreply.github.com>2020-10-03 12:14:00 +0000
committerGitHub <noreply@github.com>2020-10-03 13:14:00 +0100
commitf54eb86e9a0b596dfeceb18277efa8f840d85919 (patch)
treee262fe89169ebfa5f762c4df1504e2962e5b8c20
parentba3b225a126ebb3c6d4fe27c9f7c73aa4167001e (diff)
downloadlibfuse-f54eb86e9a0b596dfeceb18277efa8f840d85919.tar.gz
Fix typo "retuned" -> "returned" (#553)
-rw-r--r--doc/mount.fuse3.82
-rw-r--r--include/fuse.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/mount.fuse3.8 b/doc/mount.fuse3.8
index 79ff921..acb7672 100644
--- a/doc/mount.fuse3.8
+++ b/doc/mount.fuse3.8
@@ -179,7 +179,7 @@ Override the \fIst_gid\fP field set by the filesystem (N is numeric).
The timeout in seconds for which name lookups will be cached. The default is 1.0 second. For all the timeout options, it is possible to give fractions of a second as well (e.g. \fBentry_timeout=2.8\fP)
.TP
\fBnegative_timeout=T\fP
-The timeout in seconds for which a negative lookup will be cached. This means, that if file did not exist (lookup retuned \fBENOENT\fP), the lookup will only be redone after the timeout, and the file/directory will be assumed to not exist until then. The default is 0.0 second, meaning that caching negative lookups are disabled.
+The timeout in seconds for which a negative lookup will be cached. This means, that if file did not exist (lookup returned \fBENOENT\fP), the lookup will only be redone after the timeout, and the file/directory will be assumed to not exist until then. The default is 0.0 second, meaning that caching negative lookups are disabled.
.TP
\fBattr_timeout=T\fP
The timeout in seconds for which file/directory attributes are cached. The default is 1.0 second.
diff --git a/include/fuse.h b/include/fuse.h
index 7ffae41..9484f05 100644
--- a/include/fuse.h
+++ b/include/fuse.h
@@ -121,7 +121,7 @@ struct fuse_config {
/**
* The timeout in seconds for which a negative lookup will be
* cached. This means, that if file did not exist (lookup
- * retuned ENOENT), the lookup will only be redone after the
+ * returned ENOENT), the lookup will only be redone after the
* timeout, and the file/directory will be assumed to not
* exist until then. A value of zero means that negative
* lookups are not cached.