From 6ebac049cd373d5f45eb82855cfe2c127581ff1f Mon Sep 17 00:00:00 2001 From: listen2 Date: Thu, 23 Aug 2012 20:16:11 -0400 Subject: [PATCH] Fix typo in docstring. --- r2/r2/lib/utils/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/r2/r2/lib/utils/utils.py b/r2/r2/lib/utils/utils.py index fb61fead4..41b2f5a25 100644 --- a/r2/r2/lib/utils/utils.py +++ b/r2/r2/lib/utils/utils.py @@ -1360,7 +1360,7 @@ def constant_time_compare(actual, expected): """ Returns True if the two strings are equal, False otherwise - The time taken is dependent on the number of charaters provided + The time taken is dependent on the number of characters provided instead of the number of characters that match. """ actual_len = len(actual)