You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ if eq 42 }} foo {{ end }} --> error calling eq: missing arguments for comparison
{{ if ne 42 }} foo {{ end }} --> wrong number of args for ne: want 2 got 1
{{ if gt 42 }} foo {{ end }} --> wrong number of args for gt: want 2 got 1
{{ if ge 42 }} foo {{ end }} --> wrong number of args for ge: want 2 got 1
{{ if lt 42 }} foo {{ end }} --> wrong number of args for lt: want 2 got 1
{{ if le 42 }} foo {{ end }} --> wrong number of args for le: want 2 got 1
Currently:
{{ if eq 42 }} foo {{ end }} --> error calling eq: missing arguments for comparison
{{ if ne 42 }} foo {{ end }} --> foo
{{ if gt 42 }} foo {{ end }} --> foo
{{ if ge 42 }} foo {{ end }} --> foo
{{ if lt 42 }} foo {{ end }} --> foo
{{ if le 42 }} foo {{ end }} --> foo
Fixing this will break some already broken things in the wild. What brought this to my attention was someone doing ne .IsHome instead of not .IsHome.
The text was updated successfully, but these errors were encountered:
Prior to
0c251be
(#6775) ...Currently:
Fixing this will break some already broken things in the wild. What brought this to my attention was someone doing
ne .IsHome
instead ofnot .IsHome
.The text was updated successfully, but these errors were encountered: