From: Matt Corallo Date: Thu, 30 Jun 2022 17:09:52 +0000 (+0000) Subject: [TS] Fix typo in inconsistent-versions error message X-Git-Tag: v0.0.108.1^2~4 X-Git-Url: http://git.bitcoin.ninja/index.cgi?p=ldk-java;a=commitdiff_plain;h=45accdbc29db69da15f49ea8dea671a4bfbf895b [TS] Fix typo in inconsistent-versions error message --- 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();