From 9ddae466dd504c35dd4b48357400e1a061011b58 Mon Sep 17 00:00:00 2001 From: Robert Smallshire Date: Tue, 2 Sep 2014 11:11:56 +0200 Subject: [PATCH] Typos --- catalog.py | 2 +- util.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/catalog.py b/catalog.py index c614277..292f3e9 100644 --- a/catalog.py +++ b/catalog.py @@ -11,7 +11,7 @@ class CatalogBuilder: values used, a more compact or efficient representation of the mapping is possible than, say, a regular dictionary. The CatalogBuilder accumulates values and then, once all values have been added, analyzes - the keys and values to produce an more optimized representation of the + the keys and values to produce a more optimized representation of the mapping. """ diff --git a/util.py b/util.py index bae04c8..4c46736 100644 --- a/util.py +++ b/util.py @@ -33,7 +33,7 @@ def contains_duplicates(sorted_iterable): def measure_stride(iterable): - """Determine whether successive numeric items differ by a contant amount. + """Determine whether successive numeric items differ by a constant amount. Args: iterable: An iterable series of numeric values.