Browse Source

Fixed 2 clippy warnings

Use String::push rather than String::push_str when dealing with text 1 in length
david 4 tháng trước cách đây
mục cha
commit
a69f04c142
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      src/data.rs

+ 2 - 2
src/data.rs

@@ -596,7 +596,7 @@ impl Data {
                 } else {
                     out.push_str("Data");
                 }
-                out.push_str(">");
+                out.push('>');
                 out
             },
             Self::Map(m) => {
@@ -618,7 +618,7 @@ impl Data {
                 } else {
                     out.push_str("Data");
                 }
-                out.push_str(">");
+                out.push('>');
                 out
             },
         }