From b15e058a27a3eda6d65585d930852421bdbeff21 Mon Sep 17 00:00:00 2001 From: AndLLA <44858649+AndLLA@users.noreply.github.com> Date: Sun, 2 Oct 2022 19:44:49 +0200 Subject: [PATCH] typo in comment --- Source/Modules/r.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Modules/r.cxx b/Source/Modules/r.cxx index 581a9bee1..3ea48ea7b 100644 --- a/Source/Modules/r.cxx +++ b/Source/Modules/r.cxx @@ -2095,7 +2095,7 @@ int R::functionWrapper(Node *n) { String * classtypeobj = NewString(Getattr(parent, "classtypeobj")); // this is the correct name, e.g. ClassName(int) String * classtype = NewString(Getattr(parent, "classtype")); // this is the "wrong" name e.g. ClassName - // we replace inside smartname ClassName with ClassName + // we replace inside smartname ClassName with ClassName(int) String * smartname_fixed = NewString(smartname); Replaceall(classtype, " ", ""); // classtype actually has spaces inside so we remove them Replaceall(smartname_fixed, classtype, classtypeobj);