aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTHARAK HEGDE <120558797+captainhaddock18@users.noreply.github.com>2023-07-05 22:11:55 +0530
committerGitHub <noreply@github.com>2023-07-05 22:11:55 +0530
commit67fc6fed9e66c49aed2eb52801712c849e40e5bf (patch)
tree7d4f081cb77ed5e325f733f6f66d7c02bbd1cb42
parenteebb0a57468f20ec9e57e842ba1fc4a0d6c6598e (diff)
downloadservo-67fc6fed9e66c49aed2eb52801712c849e40e5bf.tar.gz
servo-67fc6fed9e66c49aed2eb52801712c849e40e5bf.zip
Updated data.py(First Pull Request)
Fixed a typo error. The error was corrected by changing "argument" to "argument".
-rw-r--r--components/style/properties/data.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/style/properties/data.py b/components/style/properties/data.py
index eb61992c44b..eb601f1de24 100644
--- a/components/style/properties/data.py
+++ b/components/style/properties/data.py
@@ -205,7 +205,7 @@ class Keyword(object):
def arg_to_bool(arg):
if isinstance(arg, bool):
return arg
- assert arg in ["True", "False"], "Unexpected value for boolean arguement: " + repr(
+ assert arg in ["True", "False"], "Unexpected value for boolean argument: " + repr(
arg
)
return arg == "True"