Print this page
9842 man page typos and spelling

@@ -466,11 +466,11 @@
 
 
        Example 2 Removing Files
 
 
-       The following comand removes all files in your home directory named
+       The following command removes all files in your home directory named
        a.out or *.o that have not been accessed for a week:
 
 
          example% find $HOME \( -name a.out -o -name '*.o' \) \
                 -atime +7 -exec rm {} \;