Consistently spell "file name" and "file system" as two words.
[pintos-anon] / src / threads / init.c
index ef82cb192083e398f1c859a2faaf403a8c35ff8e..a624ef57edf02a2b3aa7b392e5a4fc37abded034 100644 (file)
@@ -46,7 +46,7 @@ uint32_t *base_page_dir;
 bool enable_mlfqs;
 
 #ifdef FILESYS
-/* -f: Format the filesystem? */
+/* -f: Format the file system? */
 static bool format_filesys;
 #endif
 
@@ -119,7 +119,7 @@ main (void)
   timer_calibrate ();
 
 #ifdef FILESYS
-  /* Initialize filesystem. */
+  /* Initialize file system. */
   disk_init ();
   filesys_init (format_filesys);
 #endif