Code

Documentation: more "git-" versus "git " changes
[git.git] / Documentation / git-checkout-index.txt
index daa6aee558cadebed1570c7c4efe36991010647f..a833a4dda8a482ea403603f011c361a5b5b3812f 100644 (file)
@@ -88,7 +88,7 @@ $ find . -name '*.h' -print0 | xargs -0 git checkout-index -f --
 which will force all existing `*.h` files to be replaced with their
 cached copies. If an empty command line implied "all", then this would
 force-refresh everything in the index, which was not the point.  But
-since git-checkout-index accepts --stdin it would be faster to use:
+since `git-checkout-index` accepts --stdin it would be faster to use:
 
 ----------------
 $ find . -name '*.h' -print0 | git checkout-index -f -z --stdin