diff options
author | Bastian Müller <bastian@turbolent.com> | 2019-04-24 13:36:02 -0700 |
---|---|---|
committer | Alon Zakai <azakai@google.com> | 2019-04-24 13:36:02 -0700 |
commit | bc0a605e8864324d40aafbd00e8de0e50240ce26 (patch) | |
tree | 00b3e76faad47fd3366e1c80e2ed5a09a2467e01 /src | |
parent | f81c78bd62548a1eabc27adfbcbdc44cefb320cf (diff) | |
download | binaryen-bc0a605e8864324d40aafbd00e8de0e50240ce26.tar.gz binaryen-bc0a605e8864324d40aafbd00e8de0e50240ce26.tar.bz2 binaryen-bc0a605e8864324d40aafbd00e8de0e50240ce26.zip |
Fix typo in C API: BinaryeGlobalImportGetModule -> BinaryenGlobalImportGetModule (#2047)
Diffstat (limited to 'src')
-rw-r--r-- | src/binaryen-c.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/binaryen-c.h b/src/binaryen-c.h index 5c5213383..7478a4642 100644 --- a/src/binaryen-c.h +++ b/src/binaryen-c.h @@ -898,7 +898,7 @@ void BinaryenFunctionSetDebugLocation(BinaryenFunctionRef func, BinaryenExpressi // Gets the external module name of the specified import. const char* BinaryenFunctionImportGetModule(BinaryenFunctionRef import); -const char* BinaryeGlobalImportGetModule(BinaryenGlobalRef import); +const char* BinaryenGlobalImportGetModule(BinaryenGlobalRef import); // Gets the external base name of the specified import. const char* BinaryenFunctionImportGetBase(BinaryenFunctionRef import); const char* BinaryenGlobalImportGetBase(BinaryenGlobalRef import); |