changeset 15315:ca51a5dd5d0b stable

largefiles: fix documentation to match desired behavior
author Benjamin Pollack <benjamin@bitquabit.com>
date Thu, 20 Oct 2011 13:24:08 -0400
parents 1ae824142c01
children c65f5b6e26d4
files hgext/largefiles/design.txt
diffstat 1 files changed, 5 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- 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 ==