Fix small typo in docstring
[ganeti-local] / lib / utils / algo.py
index 280a1b7..9182e8e 100644 (file)
@@ -119,7 +119,7 @@ def InvertDict(dict_in):
   """Inverts the key/value mapping of a dict.
 
   @param dict_in: The dict to invert
-  @returns the inverted dict
+  @return: the inverted dict
 
   """
   return dict(zip(dict_in.values(), dict_in.keys()))