[utils] fix typos in make_uid docstring stable
authorJulien Cristau <julien.cristau@logilab.fr>
Mon, 16 Sep 2013 10:59:59 +0200
branchstable
changeset 9232 430a7dc5e2cf
parent 9231 d2edd8ac5f33
child 9233 7d3316bfa4ff
[utils] fix typos in make_uid docstring
utils.py
--- a/utils.py	Wed Aug 28 17:15:12 2013 +0200
+++ b/utils.py	Mon Sep 16 10:59:59 2013 +0200
@@ -49,10 +49,10 @@
     """Return a unique identifier string.
 
     if specified, `key` is used to prefix the generated uid so it can be used
-    for instance as a DOM id or as sql table names.
+    for instance as a DOM id or as sql table name.
 
     See uuid.uuid4 documentation for the shape of the generated identifier, but
-    this is basicallly a 32 bits hexadecimal string.
+    this is basically a 32 bits hexadecimal string.
     """
     if key is None:
         return uuid4().hex