diff options
author | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2023-09-11 11:41:24 +0200 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2023-09-11 12:19:16 +0200 |
commit | 2e8e42af457732f25d00b2c5d42695353d301804 (patch) | |
tree | dc547251d627d1f55c8fd89f015511ff9669db35 /askama_parser/src/expr.rs | |
parent | dd9635ace66089bda485d4da30cfc6fe131d25f7 (diff) | |
download | askama-2e8e42af457732f25d00b2c5d42695353d301804.tar.gz askama-2e8e42af457732f25d00b2c5d42695353d301804.tar.bz2 askama-2e8e42af457732f25d00b2c5d42695353d301804.zip |
Use char_indices() to get byte indices for characters
Diffstat (limited to 'askama_parser/src/expr.rs')
-rw-r--r-- | askama_parser/src/expr.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/askama_parser/src/expr.rs b/askama_parser/src/expr.rs index 3e63d93..7f82266 100644 --- a/askama_parser/src/expr.rs +++ b/askama_parser/src/expr.rs @@ -254,7 +254,7 @@ impl<'a> Suffix<'a> { let mut in_str = false; let mut escaped = false; - for (i, c) in input.chars().enumerate() { + for (i, c) in input.char_indices() { if !(c == '(' || c == ')') || !in_str { match c { '(' => nested += 1, |