Browse Source

pass clippy

Evan Almloff 3 năm trước cách đây
mục cha
commit
f1f9f0df1a
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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() {
                     if c == ':' {
                         let mut current_format_args = String::new();
-                        while let Some(c) = chars.next() {
+                        for c in chars.by_ref() {
                             if c == '}' {
                                 segments.push(Segment::Formatted {
                                     format_args: current_format_args,