From 86cf62c69e9a1869054141ddaee5087e4c9fc417 Mon Sep 17 00:00:00 2001 From: Jason Spiro Date: Fri, 15 Feb 2019 00:08:25 -0500 Subject: Fix typos: e.g. change "cannonical" to "canonical". --- toys/other/readlink.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'toys/other') diff --git a/toys/other/readlink.c b/toys/other/readlink.c index 6a1a7443..beef92b0 100644 --- a/toys/other/readlink.c +++ b/toys/other/readlink.c @@ -12,7 +12,7 @@ config READLINK With no options, show what symlink points to, return error if not symlink. - Options for producing cannonical paths (all symlinks/./.. resolved): + Options for producing canonical paths (all symlinks/./.. resolved): -e Canonical path to existing entry (fail if missing) -f Full path (fail if directory missing) @@ -28,7 +28,7 @@ void readlink_main(void) { char *s; - // Calculating full cannonical path? + // Calculating full canonical path? // Take advantage of flag positions to calculate m = -1, f = 0, e = 1 if (toys.optflags & (FLAG_f|FLAG_e|FLAG_m)) s = xabspath(*toys.optargs, (toys.optflags&(FLAG_f|FLAG_e))-1); -- cgit v1.2.3