diff hgext/schemes.py @ 17425:e95ec38f86b0

fix wording and not-completely-trivial spelling errors and bad docstrings
author Mads Kiilerich <mads@kiilerich.com>
date Wed, 15 Aug 2012 22:39:18 +0200
parents 38caf405d010
children b52404a914a9
line wrap: on
line diff
--- a/hgext/schemes.py	Wed Aug 15 22:38:42 2012 +0200
+++ b/hgext/schemes.py	Wed Aug 15 22:39:18 2012 +0200
@@ -61,7 +61,7 @@
         return '<ShortRepository: %s>' % self.scheme
 
     def instance(self, ui, url, create):
-        # Should this use urlmod.url(), or is manual parsing better?
+        # Should this use the util.url class, or is manual parsing better?
         url = url.split('://', 1)[1]
         parts = url.split('/', self.parts)
         if len(parts) > self.parts: