diff --git a/tools/utils_maintenance/make_license.py b/tools/utils_maintenance/make_license.py index 3fdf53503d0..e68d932c18e 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)