From d1c82cc53785b00af65583895958a1961babf370 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 23 Oct 2024 12:25:58 +1100 Subject: [PATCH] Cleanup: spelling in comments --- tools/utils_maintenance/make_license.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/utils_maintenance/make_license.py b/tools/utils_maintenance/make_license.py index a7389fabaeb..2c648a512a2 100644 --- a/tools/utils_maintenance/make_license.py +++ b/tools/utils_maintenance/make_license.py @@ -242,7 +242,7 @@ class License: license_raw = "\n".join(line.rstrip() for line in license_raw.split("\n")) # Debug option commented out. - # This is useful if you want a human-inspectionable document without the licenses. + # This is useful if you want a document for human inspection without the licenses. # license_raw = "# Debug" summary_prefix = f"{int_to_superscript(index)} " if index else "" @@ -527,10 +527,10 @@ def extract_licenses(text: str) -> set[str]: For example, for the input: * - * + * The output would be: - {"SPDX:GPL-3.0-or-later", "Arev-Fonts"} + {"SPDX:GPL-3.0-or-later", "Example-Fonts"} """ # Remove multi-line comments (). text = re.sub(r"", "", text, flags=re.DOTALL)