From a9aa375109184f0c124f8a1575c58baa2656a61b Mon Sep 17 00:00:00 2001 From: wangguoliang Date: Thu, 7 Sep 2017 09:40:46 +0000 Subject: [PATCH] lib/fs: Comment typo Skip-check: authors GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/4354 --- lib/fs/basicfs.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/fs/basicfs.go b/lib/fs/basicfs.go index 2274b50cd..783e64db9 100644 --- a/lib/fs/basicfs.go +++ b/lib/fs/basicfs.go @@ -71,7 +71,7 @@ func newBasicFilesystem(root string) *BasicFilesystem { // rooted expands the relative path to the full path that is then used with os // package. If the relative path somehow causes the final path to escape the root -// directoy, this returns an error, to prevent accessing files that are not in the +// directory, this returns an error, to prevent accessing files that are not in the // shared directory. func (f *BasicFilesystem) rooted(rel string) (string, error) { // The root must not be empty.