From dbb536b5055d48da9b4982f4100a5a340b8c3058 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jo=C3=A3o=20Magalh=C3=A3es?= <joamag@gmail.com>
Date: Tue, 21 Feb 2023 18:35:45 +0000
Subject: [PATCH] fix: clippy issues

---
 build.rs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/build.rs b/build.rs
index bf1b12ca..606df06c 100644
--- a/build.rs
+++ b/build.rs
@@ -54,8 +54,8 @@ fn main() {
         .open(dest_path)
         .unwrap_or_else(|_| panic!("Can't open '{}'", BUILD_OUT_FILE));
 
-    writeln!(file, "{}", "//! Global constants, such as compiler version used, features, platform information and others.\n").unwrap();
-    writeln!(file, "{}", "// @generated\n").unwrap();
+    writeln!(file, "//! Global constants, such as compiler version used, features, platform information and others.\n").unwrap();
+    writeln!(file, "// @generated\n").unwrap();
 
     let now_utc = Utc::now();
     write_str_constant(
-- 
GitLab