From 028c6cdf50859a921c5e53613e5a4ac8ec0297b6 Mon Sep 17 00:00:00 2001 From: xushiwei Date: Mon, 6 May 2024 23:13:20 +0800 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 69355b06..fb91582f 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ go install -v ./... The `_demo` directory contains our demos (it start with `_` to prevent the `go` command from compiling it): * [hello](_demo/hello/hello.go): call C printf to print `Hello world` -* [concat](_demo/concat/concat.go): call C fprintf with stderr, and Go variable parameter function +* [concat](_demo/concat/concat.go): call C fprintf with stderr, and Go variadic function * [qsort](_demo/qsort/qsort.go): call C function with a callback (eg. qsort) * [genints](_demo/genints/genints.go): various forms of closure usage (including C function, recv.method and anonymous function)