summaryrefslogtreecommitdiff
path: root/test/example/c-api-hello-world.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/example/c-api-hello-world.c')
-rw-r--r--test/example/c-api-hello-world.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/example/c-api-hello-world.c b/test/example/c-api-hello-world.c
index 9117c5762..59b0b1e32 100644
--- a/test/example/c-api-hello-world.c
+++ b/test/example/c-api-hello-world.c
@@ -6,7 +6,7 @@
int main() {
BinaryenModuleRef module = BinaryenModuleCreate();
- // Creation a function type for i32 (i32, i32)
+ // Create a function type for i32 (i32, i32)
BinaryenType params[2] = { BinaryenInt32(), BinaryenInt32() };
BinaryenFunctionTypeRef iii = BinaryenAddFunctionType(module, "iii", BinaryenInt32(), params, 2);