瀏覽代碼

Fixed 2 clippy warnings

Use String::push rather than String::push_str when dealing with text 1 in length
david 4 月之前
父節點
當前提交
8dbb80faf9
共有 1 個文件被更改,包括 2 次插入2 次删除
  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
             },
         }