Browse Source

pass clippy

Evan Almloff 3 years ago
parent
commit
f1f9f0df1a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/rsx/src/ifmt.rs

+ 1 - 1
packages/rsx/src/ifmt.rs

@@ -94,7 +94,7 @@ impl FromStr for IfmtInput {
                 while let Some(c) = chars.next() {
                 while let Some(c) = chars.next() {
                     if c == ':' {
                     if c == ':' {
                         let mut current_format_args = String::new();
                         let mut current_format_args = String::new();
-                        while let Some(c) = chars.next() {
+                        for c in chars.by_ref() {
                             if c == '}' {
                             if c == '}' {
                                 segments.push(Segment::Formatted {
                                 segments.push(Segment::Formatted {
                                     format_args: current_format_args,
                                     format_args: current_format_args,