From d327b5010d182a5d4ee0f5eb4f82dcf99918d23e Mon Sep 17 00:00:00 2001 From: Vilsol Date: Wed, 26 Jan 2022 17:51:02 +0200 Subject: [PATCH] Fix typo in selector name --- m/impl/types.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/m/impl/types.go b/m/impl/types.go index c57e994..efc31e9 100644 --- a/m/impl/types.go +++ b/m/impl/types.go @@ -37,9 +37,9 @@ func init() { transpiler.RegisterSelector("m.This", "@this") transpiler.RegisterSelector("m.ThisX", "@thisx") - transpiler.RegisterSelector("m.ThisXF", "@thisx") + transpiler.RegisterSelector("m.ThisXf", "@thisx") transpiler.RegisterSelector("m.ThisY", "@thisy") - transpiler.RegisterSelector("m.ThisYF", "@thisy") + transpiler.RegisterSelector("m.ThisYf", "@thisy") transpiler.RegisterSelector("m.Ipt", "@ipt") transpiler.RegisterSelector("m.Counter", "@counter") transpiler.RegisterSelector("m.Links", "@links")