From b69879eefe0c2485a6b8b8e6f396e4618e3c4c1a Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Mon, 20 Jul 2020 11:21:32 +0200 Subject: Fix additional clippy issue --- testing/templates/allow-whitespaces.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'testing/templates') diff --git a/testing/templates/allow-whitespaces.html b/testing/templates/allow-whitespaces.html index f1acc90..4c64ca2 100644 --- a/testing/templates/allow-whitespaces.html +++ b/testing/templates/allow-whitespaces.html @@ -29,7 +29,7 @@ {{ array[..]| json }}{{ array [ .. ]| json }} {{ array[1..2]| json }}{{ array [ 1 .. 2 ]| json }} {{ array[1..=2]| json }}{{ array [ 1 ..= 2 ]| json }} -{{ array[(0+1)..(3-2)]| json }}{{ array [ ( 0 + 1 ) .. ( 3 - 1 ) ]| json }} +{{ array[(0+1)..(3-1)]| json }}{{ array [ ( 0 + 1 ) .. ( 3 - 1 ) ]| json }} {{-1}}{{ -1 }}{{ - 1 }} {{1+2}}{{ 1+2 }}{{ 1 +2 }}{{ 1+ 2 }} {{ 1 + 2 }} -- cgit