From e5dabc30d102301988911420a3d33b4b8bf93e57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vojt=C4=9Bch=20Struh=C3=A1r?= <49688205+VojtaStruhar@users.noreply.github.com> Date: Mon, 23 Sep 2024 14:47:33 +0200 Subject: [PATCH] Update README.md Corrected a typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c8d0f54..26d84dd 100644 --- a/README.md +++ b/README.md @@ -181,7 +181,7 @@ int main(int argc, char **argv) { // Creage Lua context LuaContext lua; - // Create library "foo" conatining the "foo" function + // Create library "foolib" containing the "sum" function std::shared_ptr lib = std::make_shared("foolib"); lib->AddCFunction("sum", _sum);