From 9f59f1f7ca2ff94d9ad34dfe9889f757bba2373a Mon Sep 17 00:00:00 2001 From: Terry Cain Date: Sun, 8 Oct 2017 10:34:30 +0100 Subject: [PATCH] Spelling fix ;-) --- moto/dynamodb2/comparisons.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/moto/dynamodb2/comparisons.py b/moto/dynamodb2/comparisons.py index faaaaf63..c0983a29 100644 --- a/moto/dynamodb2/comparisons.py +++ b/moto/dynamodb2/comparisons.py @@ -189,7 +189,7 @@ def get_filter_expression(expr, names, values): op_stack = [] # Basically takes in an infix notation calculation, converts it to a reverse polish notation where there is no - # ambiguaty on which order operators are applied. + # ambiguity on which order operators are applied. while len(token_list) > 0: token = token_list.pop(0) @@ -215,7 +215,7 @@ def get_filter_expression(expr, names, values): output = shunting_yard(tokens2) - # Hacky funcition to convert dynamo functions (which are represented as lists) to their Class equivelent + # Hacky function to convert dynamo functions (which are represented as lists) to their Class equivalent def to_func(val): if isinstance(val, list): func_name = val.pop(0)