diff options
author | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2020-07-20 11:21:32 +0200 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2020-07-20 11:21:32 +0200 |
commit | b69879eefe0c2485a6b8b8e6f396e4618e3c4c1a (patch) | |
tree | a0684eae39daad0197cfabb19893811d11acf4ac /testing/templates | |
parent | 40748eb8e0689af0fd8bb757ae24684d4b770d68 (diff) | |
download | askama-b69879eefe0c2485a6b8b8e6f396e4618e3c4c1a.tar.gz askama-b69879eefe0c2485a6b8b8e6f396e4618e3c4c1a.tar.bz2 askama-b69879eefe0c2485a6b8b8e6f396e4618e3c4c1a.zip |
Fix additional clippy issue
Diffstat (limited to '')
-rw-r--r-- | testing/templates/allow-whitespaces.html | 2 |
1 files changed, 1 insertions, 1 deletions
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 }} |