From 546b5a9e5ce7504889ce406f1f03e5bbf414566c Mon Sep 17 00:00:00 2001 From: Jan Knobloch <116908874+jk4e@users.noreply.github.com> Date: Wed, 28 Aug 2024 15:57:24 +0200 Subject: [PATCH] Fix typo (#5057) --- sing.html.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sing.html.markdown b/sing.html.markdown index 50b52390..b455c0fe 100644 --- a/sing.html.markdown +++ b/sing.html.markdown @@ -243,8 +243,8 @@ private: // How to declare a member function fn AClass.is_ready() bool { - // inside a member function, members can be accessed thrugh the - // this keyword and the field selector '.' + // inside a member function, members can be accessed through the + // 'this' keyword and the field selector '.' return(this.public_var > 10); }