From 45accdbc29db69da15f49ea8dea671a4bfbf895b Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Thu, 30 Jun 2022 17:09:52 +0000 Subject: [PATCH] [TS] Fix typo in inconsistent-versions error message --- typescript_strings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typescript_strings.py b/typescript_strings.py index 1e6b1e80..c8fcfc93 100644 --- a/typescript_strings.py +++ b/typescript_strings.py @@ -107,7 +107,7 @@ async function finishInitializeWasm(wasmInstance: WebAssembly.Instance) { } if (decodeString(wasm.TS_get_lib_version_string()) !== version.get_ldk_java_bindings_version()) - throw new Error(\"Compiled LDK library and LDK class failes do not match\"); + throw new Error(\"Compiled LDK library and LDK class files do not match\"); // Fetching the LDK versions from C also checks that the header and binaries match const c_bindings_ver: number = wasm.TS_get_ldk_c_bindings_version(); const ldk_ver: number = wasm.TS_get_ldk_version(); -- 2.30.2