# HG changeset patch # User Julien Cristau # Date 1379321999 -7200 # Node ID 430a7dc5e2cffc2c406d163ba036b4494cd4a4a5 # Parent d2edd8ac5f330d2cffe505a57fa5b1e380d3fda4 [utils] fix typos in make_uid docstring diff -r d2edd8ac5f33 -r 430a7dc5e2cf 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