largefiles: fix documentation to match desired behavior stable
authorBenjamin Pollack <benjamin@bitquabit.com>
Thu, 20 Oct 2011 13:24:08 -0400
branchstable
changeset 15315 ca51a5dd5d0b
parent 15314 1ae824142c01
child 15316 c65f5b6e26d4
largefiles: fix documentation to match desired behavior
hgext/largefiles/design.txt
--- a/hgext/largefiles/design.txt	Thu Oct 20 17:47:33 2011 +0200
+++ b/hgext/largefiles/design.txt	Thu Oct 20 13:24:08 2011 -0400
@@ -20,15 +20,16 @@
 
 == The Local Repository ==
 
-The local repository has a largefile cache in .hg/largefiles which holds a
+The local repository has a largefile store in .hg/largefiles which holds a
 subset of the largefiles needed. On a clone only the largefiles at tip are
 downloaded. When largefiles are downloaded from the central store, a copy is
 saved in this store.
 
-== The Global Cache ==
+== The User Cache ==
 
-largefiles in a local repository cache are hardlinked to files in the global
-cache. Before a file is downloaded we check if it is in the global cache.
+largefiles in a local repository store are hardlinked to files in the user
+cache. Before a file is downloaded we check if it is in the global cache,
+hard-linking to the local store if we find it.
 
 == Implementation Details ==