From 2f1ed60e255416f642e79b6a7f88cfdfe70fcec6 Mon Sep 17 00:00:00 2001 From: lostsquirrel Date: Tue, 4 Jul 2023 17:57:44 +0800 Subject: [PATCH] remove the mistable semicolon --- en/src/basic-types/statements-expressions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/en/src/basic-types/statements-expressions.md b/en/src/basic-types/statements-expressions.md index ff1f83f..1bd07e7 100644 --- a/en/src/basic-types/statements-expressions.md +++ b/en/src/basic-types/statements-expressions.md @@ -63,8 +63,8 @@ fn main() { } fn sum(x: i32, y: i32) -> i32 { - x + y; + x + y } ``` -> You can find the solutions [here](https://github.com/sunface/rust-by-practice)(under the solutions path), but only use it when you need it \ No newline at end of file +> You can find the solutions [here](https://github.com/sunface/rust-by-practice)(under the solutions path), but only use it when you need it