From b8157140526e83cb05654b2884d7f05fd592fee7 Mon Sep 17 00:00:00 2001 From: C3pa <41503714+C3pa@users.noreply.github.com> Date: Mon, 6 Nov 2023 15:44:12 +0100 Subject: [PATCH] Fix a typo in the inheritance example #1514 --- examples/source/docs/inheritance.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/source/docs/inheritance.cpp b/examples/source/docs/inheritance.cpp index c011db46..096f4b5a 100644 --- a/examples/source/docs/inheritance.cpp +++ b/examples/source/docs/inheritance.cpp @@ -20,7 +20,7 @@ int main(int, char*[]) { sol::state lua; - lua.new_usertype("A", "call", &A::call); + lua.new_usertype("A", "call", &A::call); lua.new_usertype("B", "call",