summaryrefslogtreecommitdiff
path: root/scripts/generate_schema_enums.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/generate_schema_enums.py')
-rwxr-xr-xscripts/generate_schema_enums.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/generate_schema_enums.py b/scripts/generate_schema_enums.py
index 3a147ffd82..a2e7ee2e2f 100755
--- a/scripts/generate_schema_enums.py
+++ b/scripts/generate_schema_enums.py
@@ -91,7 +91,7 @@ def write_enum_list(redfish_defs_file, enum_list, snake_case_namespace):
values = element.values
if "Invalid" not in values:
values.insert(0, "Invalid")
- # nlohmann::json aparently uses c style arrays in their enum
+ # nlohmann::json apparently uses c style arrays in their enum
# implementation, and clang-tidy isn't smart enough to figure out that
# the C arrays are in their code not bmcwebs, so we have to explicitly
# ignore the error.