Skip to content

Commit 8309078

Browse files
fix typo
1 parent 53ca1db commit 8309078

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/extra/advanced/modding-api/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The MCPELauncher API allows developers to hook into Minecraft's runtime, modify
1212

1313
Use `dlopen("libmcpelauncher_mod.so", RTLD_NOW)` and `dlsym` to access the API. The symbols are defined in the `libmcpelauncher_mod.so` shared library.
1414

15-
Otherwise declare the symbols as weam `extern "C"` in your C++ code to avoid name mangling and allow the launcher to provide the implementations.
15+
Otherwise declare the symbols as weak, `extern "C"` in your C++ code to avoid name mangling and allow the launcher to provide the implementations.
1616

1717
```c++
1818
extern "C" {

0 commit comments

Comments
 (0)