From d9307683f92e5730ae437361f7e6fbbae45476fd Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Sat, 20 Nov 2021 16:00:55 +1100 Subject: [PATCH] docs: Fix a few typos There are small typos in: - simpledb/simpledb.py Fixes: - Should read `greater` rather than `greather`. - Should read `consisting` rather than `constisting`. --- simpledb/simpledb.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/simpledb/simpledb.py b/simpledb/simpledb.py index adc794e..c4fe45d 100644 --- a/simpledb/simpledb.py +++ b/simpledb/simpledb.py @@ -19,7 +19,7 @@ # attr__eq = None, attr__noteq = None, and every(), respectively. 'eq': '=', # equals 'noteq': '!=', # not equals - 'gt': '>', # greather than + 'gt': '>', # greater than 'gte': '>=', # greater than or equals 'lt': '<', # less than 'lte': '<=', # less than or equals @@ -134,7 +134,7 @@ def to_postdata(self): def get_normalized_parameters(self): """ - Returns a list constisting of all the parameters required in the + Returns a list consisting of all the parameters required in the signature in the proper order. """