[TS] Fix typo in inconsistent-versions error message
authorMatt Corallo <git@bluematt.me>
Thu, 30 Jun 2022 17:09:52 +0000 (17:09 +0000)
committerMatt Corallo <git@bluematt.me>
Thu, 30 Jun 2022 19:03:45 +0000 (19:03 +0000)
typescript_strings.py

index 1e6b1e80cc8412381ce3554fb558e589cba05eec..c8fcfc93c1a92f579483a43b4a8c987721b7d466 100644 (file)
@@ -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();