# New Ticket Created by  Rares Aioanei 
# Please include the string:  [perl #126762]
# in the subject line of all future correspondence about this issue. 
# <URL: https://rt.perl.org/Ticket/Display.html?id=126762 >



Running latest rakudo off git and at line 51 of
t/04-nativecall/11-cpp.t I noticed that it says "instanciate" instead
of "instantiate". Attached is the diff. 
-- 
Rares Aioanei
--- 11-cpp.t	2015-11-30 00:10:43.126570879 +0200
+++ 11-cpp.new.t	2015-11-30 01:07:33.078228643 +0200
@@ -48,7 +48,7 @@ class Derived1 is repr<CPPStruct> {
 sub SizeofDerived1() returns int32 is mangled is native("./11-cpp") { * }
 
 is nativesizeof(Derived1), SizeofDerived1(), 'sizeof(Derived1)';
-ok my $d1 = Derived1.new, 'can instanciate C++ class';
+ok my $d1 = Derived1.new, 'can instantiate C++ class';
 is $d1.foo,   11,   'can read attribute foo';
 is $d1.bar,   42,   'can read attribute bar';
 is $d1.baz,   43,   'can read attribute baz';

Reply via email to