From: Ian Lance Taylor
+ The text/template package now correctly reports errors when a
+ parenthesized argument is used as a function.
+ This most commonly shows up in erroneous cases like
+ {{if (eq .F "a") or (eq .F "b")}}
.
+ This should be written as {{if or (eq .F "a") (eq .F "b")}}
.
+ The erroneous case never worked as expected, and will now be
+ reported with an error can't give argument to non-function
.
+