From f7de028b931071e8a029589e388e82afdf2b5ae5 Mon Sep 17 00:00:00 2001 From: crawfordxx Date: Wed, 18 Mar 2026 12:29:29 +0800 Subject: [PATCH] Platforms/emscripten: fix typo "Succeded" -> "Succeeded" Fix a spelling mistake in the print message in write_library_config(). --- Platforms/emscripten/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Platforms/emscripten/__main__.py b/Platforms/emscripten/__main__.py index 7b5f6d2ab1bdd9..d1f53133f9b0bf 100644 --- a/Platforms/emscripten/__main__.py +++ b/Platforms/emscripten/__main__.py @@ -341,7 +341,7 @@ def write_library_config(prefix, name, config, quiet): with cached_config.open("w") as f: json.dump(config, f) if not quiet: - print(f"Succeded building {name}, wrote config to {cached_config}") + print(f"Succeeded building {name}, wrote config to {cached_config}") @subdir("host_build_dir", clean_ok=True)