Auto merge of #29974 - captainhaddock18:master, r=mrobinson

Fix a typo in `components/style/properties/data.py`

Fixed a typo error. The error was corrected by changing "argument" to "argument".
This commit is contained in:
bors-servo 2023-07-06 14:55:06 +02:00 committed by GitHub
commit 2e0517db39
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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"