diff --git a/codes/rust_lang/part00/src/main.rs b/codes/rust_lang/part00/src/main.rs
index 094b36fbb15b034742b60256366a758e79b18d7a..72cb307893b01cb2bd82dcaecc1652fd2323ae19 100644
--- a/codes/rust_lang/part00/src/main.rs
+++ b/codes/rust_lang/part00/src/main.rs
@@ -14,7 +14,7 @@ fn main() {
     const SIZE: usize = 9;
     let tab: [i32; SIZE] = [10, 32, 12, 43, 52, 53, 83, 2, 9];
 
-    if (SIZE == 0) {
+    if SIZE == 0 {
         panic!("Size is of tab = 0.");
     }