diff hgext/largefiles/remotestore.py @ 15252:6e809bb4f969

largefiles: improve comments, internal docstrings - fix some ungrammatical/unclear/incorrect comments/docstrings - rewrite some really unclear comments/docstrings - make formatting/style more consistent with the rest of Mercurial (lowercase without period unless it's really multiple sentences) - wrap to 75 columns - always say "largefile(s)", not "lfile(s)" (or "big files") - one space between sentences, not two
author Greg Ward <greg@gerg.ca>
date Wed, 12 Oct 2011 20:59:27 -0400
parents 8e115063950d
children 67d010779907
line wrap: on
line diff
--- a/hgext/largefiles/remotestore.py	Thu Oct 13 15:15:32 2011 +0200
+++ b/hgext/largefiles/remotestore.py	Wed Oct 12 20:59:27 2011 -0400
@@ -4,7 +4,7 @@
 # This software may be used and distributed according to the terms of the
 # GNU General Public License version 2 or any later version.
 
-'''Remote largefile store; the base class for servestore'''
+'''remote largefile store; the base class for servestore'''
 
 import urllib2
 
@@ -15,7 +15,7 @@
 import basestore
 
 class remotestore(basestore.basestore):
-    """A largefile store accessed over a network"""
+    '''a largefile store accessed over a network'''
     def __init__(self, ui, repo, url):
         super(remotestore, self).__init__(ui, repo, url)