From 73cc02dbc63989bc80635f566880c7409675f2b3 Mon Sep 17 00:00:00 2001 From: Gregor Gatej Date: Thu, 17 Jul 2025 06:46:07 +0200 Subject: [PATCH 1/3] Add missing space --- en/src/basic-types/char-bool-unit.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/src/basic-types/char-bool-unit.md b/en/src/basic-types/char-bool-unit.md index cb059d85c..849fb7fe4 100644 --- a/en/src/basic-types/char-bool-unit.md +++ b/en/src/basic-types/char-bool-unit.md @@ -97,4 +97,4 @@ fn main() { } ``` -> 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 +> 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 From d1d5de408e321b13d9d69840b3b85f817e7eef67 Mon Sep 17 00:00:00 2001 From: Gregor Gatej Date: Thu, 17 Jul 2025 07:19:38 +0200 Subject: [PATCH 2/3] Add additional missing spaces --- en/src/basic-types/functions.md | 2 +- en/src/basic-types/numbers.md | 2 +- en/src/basic-types/statements-expressions.md | 2 +- en/src/collections/string.md | 2 +- en/src/compound-types/array.md | 2 +- en/src/compound-types/enum.md | 2 +- en/src/compound-types/slice.md | 2 +- en/src/compound-types/string.md | 2 +- en/src/compound-types/struct.md | 2 +- en/src/compound-types/tuple.md | 2 +- en/src/fight-compiler/borrowing.md | 2 +- en/src/flow-control.md | 2 +- en/src/formatted-output/debug-display.md | 2 +- en/src/formatted-output/formatting.md | 2 +- en/src/formatted-output/println.md | 2 +- en/src/functional-programing/closure.md | 2 +- en/src/functional-programing/iterator.md | 2 +- en/src/generics-traits/advanced-traits.md | 2 +- en/src/generics-traits/const-generics.md | 2 +- en/src/generics-traits/generics.md | 2 +- en/src/generics-traits/trait-object.md | 2 +- en/src/generics-traits/traits.md | 2 +- en/src/lifetime/advance.md | 2 +- en/src/lifetime/basic.md | 2 +- en/src/lifetime/static.md | 2 +- en/src/method.md | 2 +- en/src/ownership/borrowing.md | 2 +- en/src/ownership/ownership.md | 2 +- en/src/pattern-match/match-iflet.md | 2 +- en/src/pattern-match/patterns.md | 2 +- en/src/result-panic/panic.md | 2 +- en/src/result-panic/result.md | 2 +- en/src/smart-pointers/box.md | 2 +- en/src/type-conversions/as.md | 2 +- en/src/type-conversions/from-into.md | 2 +- en/src/type-conversions/others.md | 2 +- en/src/variables.md | 2 +- 37 files changed, 37 insertions(+), 37 deletions(-) diff --git a/en/src/basic-types/functions.md b/en/src/basic-types/functions.md index b8a403d5f..7aa7f5ab4 100644 --- a/en/src/basic-types/functions.md +++ b/en/src/basic-types/functions.md @@ -98,4 +98,4 @@ fn main() { } ``` -> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/basic-types/functions.md)(under the solutions path), but only use it when you need it +> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/basic-types/functions.md) (under the solutions path), but only use it when you need it diff --git a/en/src/basic-types/numbers.md b/en/src/basic-types/numbers.md index 51c7d0dfd..2415fc13f 100644 --- a/en/src/basic-types/numbers.md +++ b/en/src/basic-types/numbers.md @@ -183,4 +183,4 @@ fn main() { } ``` -> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/basic-types/numbers.md)(under the solutions path), but only use it when you need it +> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/basic-types/numbers.md) (under the solutions path), but only use it when you need it diff --git a/en/src/basic-types/statements-expressions.md b/en/src/basic-types/statements-expressions.md index 1bd07e779..bf5a60470 100644 --- a/en/src/basic-types/statements-expressions.md +++ b/en/src/basic-types/statements-expressions.md @@ -67,4 +67,4 @@ fn sum(x: i32, y: i32) -> i32 { } ``` -> 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 +> 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 diff --git a/en/src/collections/string.md b/en/src/collections/string.md index 6592c4519..931c8e685 100644 --- a/en/src/collections/string.md +++ b/en/src/collections/string.md @@ -203,4 +203,4 @@ fn main() { ### Common methods More exercises of String methods can be found [here](../std/String.md). -> 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 \ No newline at end of file diff --git a/en/src/compound-types/array.md b/en/src/compound-types/array.md index 9833ec589..0c55cdc21 100644 --- a/en/src/compound-types/array.md +++ b/en/src/compound-types/array.md @@ -99,4 +99,4 @@ fn main() { ``` -> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/compound-types/array.md)(under the solutions path), but only use it when you need it +> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/compound-types/array.md) (under the solutions path), but only use it when you need it diff --git a/en/src/compound-types/enum.md b/en/src/compound-types/enum.md index 056e57752..32e8ec24f 100644 --- a/en/src/compound-types/enum.md +++ b/en/src/compound-types/enum.md @@ -208,4 +208,4 @@ fn main() { } ``` -> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/compound-types/enum.md)(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/blob/master/solutions/compound-types/enum.md) (under the solutions path), but only use it when you need it \ No newline at end of file diff --git a/en/src/compound-types/slice.md b/en/src/compound-types/slice.md index 152e61c07..e963734de 100644 --- a/en/src/compound-types/slice.md +++ b/en/src/compound-types/slice.md @@ -97,4 +97,4 @@ fn first_letter(s: &str) -> &str { } ``` -> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/compound-types/slice.md)(under the solutions path), but only use it when you need it +> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/compound-types/slice.md) (under the solutions path), but only use it when you need it diff --git a/en/src/compound-types/string.md b/en/src/compound-types/string.md index 6760b6ad0..8cc716881 100644 --- a/en/src/compound-types/string.md +++ b/en/src/compound-types/string.md @@ -264,4 +264,4 @@ fn main() { } ``` -> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/compound-types/string.md)(under the solutions path), but only use it when you need it +> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/compound-types/string.md) (under the solutions path), but only use it when you need it diff --git a/en/src/compound-types/struct.md b/en/src/compound-types/struct.md index 924a547e6..5a975ffef 100644 --- a/en/src/compound-types/struct.md +++ b/en/src/compound-types/struct.md @@ -228,4 +228,4 @@ fn main() { } ``` -> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/compound-types/struct.md)(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/blob/master/solutions/compound-types/struct.md) (under the solutions path), but only use it when you need it \ No newline at end of file diff --git a/en/src/compound-types/tuple.md b/en/src/compound-types/tuple.md index 1861797e7..5c9eec2a1 100644 --- a/en/src/compound-types/tuple.md +++ b/en/src/compound-types/tuple.md @@ -86,4 +86,4 @@ fn sum_multiply(nums: (i32, i32)) -> (i32, i32) { } ``` -> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/compound-types/tuple.md)(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/blob/master/solutions/compound-types/tuple.md) (under the solutions path), but only use it when you need it \ No newline at end of file diff --git a/en/src/fight-compiler/borrowing.md b/en/src/fight-compiler/borrowing.md index 98467d3b5..b1b543cfc 100644 --- a/en/src/fight-compiler/borrowing.md +++ b/en/src/fight-compiler/borrowing.md @@ -27,4 +27,4 @@ impl test { fn main() {} ``` -> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/fight-compiler/borrowing.md)(under the solutions path), but only use it when you need it :) +> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/fight-compiler/borrowing.md) (under the solutions path), but only use it when you need it :) diff --git a/en/src/flow-control.md b/en/src/flow-control.md index a24961007..80fe7be9b 100644 --- a/en/src/flow-control.md +++ b/en/src/flow-control.md @@ -256,4 +256,4 @@ fn main() { } ``` -> 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 \ No newline at end of file diff --git a/en/src/formatted-output/debug-display.md b/en/src/formatted-output/debug-display.md index 686dfc900..224d29437 100644 --- a/en/src/formatted-output/debug-display.md +++ b/en/src/formatted-output/debug-display.md @@ -152,4 +152,4 @@ fn main() { ``` -> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/formatted-output/debug-display.md)(under the solutions path), but only use it when you need it :) +> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/formatted-output/debug-display.md) (under the solutions path), but only use it when you need it :) diff --git a/en/src/formatted-output/formatting.md b/en/src/formatted-output/formatting.md index 1d6b27414..22b5adff0 100644 --- a/en/src/formatted-output/formatting.md +++ b/en/src/formatted-output/formatting.md @@ -181,4 +181,4 @@ fn main() { } ``` -> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/formatted-output/formatting.md)(under the solutions path), but only use it when you need it :) +> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/formatted-output/formatting.md) (under the solutions path), but only use it when you need it :) diff --git a/en/src/formatted-output/println.md b/en/src/formatted-output/println.md index 34d483b0b..a43b85edb 100644 --- a/en/src/formatted-output/println.md +++ b/en/src/formatted-output/println.md @@ -37,4 +37,4 @@ fn main() { } ``` -> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/formatted-output/println.md)(under the solutions path), but only use it when you need it :) +> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/formatted-output/println.md) (under the solutions path), but only use it when you need it :) diff --git a/en/src/functional-programing/closure.md b/en/src/functional-programing/closure.md index f0c8f9fac..753ee2324 100644 --- a/en/src/functional-programing/closure.md +++ b/en/src/functional-programing/closure.md @@ -433,4 +433,4 @@ fn call_with_different_values() { assert_eq!(v2, 1); } ``` -> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/functional-programing/closure.md)(under the solutions path), but only use it when you need it :) +> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/functional-programing/closure.md) (under the solutions path), but only use it when you need it :) diff --git a/en/src/functional-programing/iterator.md b/en/src/functional-programing/iterator.md index 799bc979a..f38d6c85d 100644 --- a/en/src/functional-programing/iterator.md +++ b/en/src/functional-programing/iterator.md @@ -351,4 +351,4 @@ fn main() { } ``` -> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/functional-programing/iterator.md)(under the solutions path), but only use it when you need it :) +> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/functional-programing/iterator.md) (under the solutions path), but only use it when you need it :) diff --git a/en/src/generics-traits/advanced-traits.md b/en/src/generics-traits/advanced-traits.md index 7355deaa0..fca36b07c 100644 --- a/en/src/generics-traits/advanced-traits.md +++ b/en/src/generics-traits/advanced-traits.md @@ -276,4 +276,4 @@ fn main() { } ``` -> 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 :) \ No newline at end of file diff --git a/en/src/generics-traits/const-generics.md b/en/src/generics-traits/const-generics.md index 9546d42ab..9f53d9b91 100644 --- a/en/src/generics-traits/const-generics.md +++ b/en/src/generics-traits/const-generics.md @@ -142,4 +142,4 @@ pub trait IsTrue {} impl IsTrue for Assert {} ``` -> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/generics-traits/const-generics.md)(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/blob/master/solutions/generics-traits/const-generics.md) (under the solutions path), but only use it when you need it :) \ No newline at end of file diff --git a/en/src/generics-traits/generics.md b/en/src/generics-traits/generics.md index f93da44b9..4c96135e9 100644 --- a/en/src/generics-traits/generics.md +++ b/en/src/generics-traits/generics.md @@ -152,5 +152,5 @@ fn main() { } ``` -> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/generics-traits/generics.md)(under the solutions path), but only use it when you need it +> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/generics-traits/generics.md) (under the solutions path), but only use it when you need it diff --git a/en/src/generics-traits/trait-object.md b/en/src/generics-traits/trait-object.md index 3c7a565a0..14e22056d 100644 --- a/en/src/generics-traits/trait-object.md +++ b/en/src/generics-traits/trait-object.md @@ -226,4 +226,4 @@ fn main() { } ``` -> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/generics-traits/trait-object.md)(under the solutions path), but only use it when you need it :) +> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/generics-traits/trait-object.md) (under the solutions path), but only use it when you need it :) diff --git a/en/src/generics-traits/traits.md b/en/src/generics-traits/traits.md index 40f669c77..717ad8d3d 100644 --- a/en/src/generics-traits/traits.md +++ b/en/src/generics-traits/traits.md @@ -469,4 +469,4 @@ fn main() { } ``` -> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/generics-traits/traits.md)(under the solutions path), but only use it when you need it :) +> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/generics-traits/traits.md) (under the solutions path), but only use it when you need it :) diff --git a/en/src/lifetime/advance.md b/en/src/lifetime/advance.md index 0fc5f579c..b5802ee58 100644 --- a/en/src/lifetime/advance.md +++ b/en/src/lifetime/advance.md @@ -283,4 +283,4 @@ fn use_list(list: &List) { } ``` -> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/lifetime/advance.md)(under the solutions path), but only use it when you need it :) +> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/lifetime/advance.md) (under the solutions path), but only use it when you need it :) diff --git a/en/src/lifetime/basic.md b/en/src/lifetime/basic.md index 13eaa1309..1be46988c 100644 --- a/en/src/lifetime/basic.md +++ b/en/src/lifetime/basic.md @@ -356,4 +356,4 @@ enum Either<'a> { fn main() {} ``` -> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/lifetime/basic.md)(under the solutions path), but only use it when you need it :) +> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/lifetime/basic.md) (under the solutions path), but only use it when you need it :) diff --git a/en/src/lifetime/static.md b/en/src/lifetime/static.md index b1160ffc6..12b0e54d6 100644 --- a/en/src/lifetime/static.md +++ b/en/src/lifetime/static.md @@ -196,4 +196,4 @@ fn print_g(t: &'static String) { } ``` -> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/lifetime/static.md)(under the solutions path), but only use it when you need it :) +> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/lifetime/static.md) (under the solutions path), but only use it when you need it :) diff --git a/en/src/method.md b/en/src/method.md index 83392d7d1..c000b8609 100644 --- a/en/src/method.md +++ b/en/src/method.md @@ -270,4 +270,4 @@ fn main() { @todo -> 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 \ No newline at end of file diff --git a/en/src/ownership/borrowing.md b/en/src/ownership/borrowing.md index 8a5e7e927..d7e63c788 100644 --- a/en/src/ownership/borrowing.md +++ b/en/src/ownership/borrowing.md @@ -183,4 +183,4 @@ fn main() { } ``` -> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/ownership/borrowing.md)(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/blob/master/solutions/ownership/borrowing.md) (under the solutions path), but only use it when you need it \ No newline at end of file diff --git a/en/src/ownership/ownership.md b/en/src/ownership/ownership.md index eb8568cef..83e1987e2 100644 --- a/en/src/ownership/ownership.md +++ b/en/src/ownership/ownership.md @@ -167,4 +167,4 @@ fn main() { ``` -> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/ownership/ownership.md)(under the solutions path), but only use it when you need it +> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/ownership/ownership.md) (under the solutions path), but only use it when you need it diff --git a/en/src/pattern-match/match-iflet.md b/en/src/pattern-match/match-iflet.md index 36a559426..d1ff069de 100644 --- a/en/src/pattern-match/match-iflet.md +++ b/en/src/pattern-match/match-iflet.md @@ -207,4 +207,4 @@ fn main() { ``` -> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/pattern-match/match.md)(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/blob/master/solutions/pattern-match/match.md) (under the solutions path), but only use it when you need it \ No newline at end of file diff --git a/en/src/pattern-match/patterns.md b/en/src/pattern-match/patterns.md index 26adc1edc..2e1dcc61e 100644 --- a/en/src/pattern-match/patterns.md +++ b/en/src/pattern-match/patterns.md @@ -117,4 +117,4 @@ fn main() { } ``` -> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/pattern-match/patterns.md)(under the solutions path), but only use it when you need it +> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/pattern-match/patterns.md) (under the solutions path), but only use it when you need it diff --git a/en/src/result-panic/panic.md b/en/src/result-panic/panic.md index be63274e7..105b4ee25 100644 --- a/en/src/result-panic/panic.md +++ b/en/src/result-panic/panic.md @@ -110,4 +110,4 @@ panic = 'abort' ``` -> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/result-panic/panic.md)(under the solutions path), but only use it when you need it :) +> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/result-panic/panic.md) (under the solutions path), but only use it when you need it :) diff --git a/en/src/result-panic/result.md b/en/src/result-panic/result.md index 2f50a374f..3fabed051 100644 --- a/en/src/result-panic/result.md +++ b/en/src/result-panic/result.md @@ -210,4 +210,4 @@ fn main() -> Result<(), ParseIntError> { Ok(()) } ``` -> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/result-panic/result.md)(under the solutions path), but only use it when you need it :) +> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/result-panic/result.md) (under the solutions path), but only use it when you need it :) diff --git a/en/src/smart-pointers/box.md b/en/src/smart-pointers/box.md index d0928f216..b9296f7c7 100644 --- a/en/src/smart-pointers/box.md +++ b/en/src/smart-pointers/box.md @@ -49,4 +49,4 @@ fn main() { ``` -> 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 +> 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 diff --git a/en/src/type-conversions/as.md b/en/src/type-conversions/as.md index 451ac7ed5..e3476d6b2 100644 --- a/en/src/type-conversions/as.md +++ b/en/src/type-conversions/as.md @@ -104,4 +104,4 @@ fn main() { } ``` -> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/type-conversions/as.md)(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/blob/master/solutions/type-conversions/as.md) (under the solutions path), but only use it when you need it \ No newline at end of file diff --git a/en/src/type-conversions/from-into.md b/en/src/type-conversions/from-into.md index 94dd5a7ed..f5f5f883e 100644 --- a/en/src/type-conversions/from-into.md +++ b/en/src/type-conversions/from-into.md @@ -168,4 +168,4 @@ fn main() { } ``` -> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/type-conversions/from-into.md)(under the solutions path), but only use it when you need it +> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/type-conversions/from-into.md) (under the solutions path), but only use it when you need it diff --git a/en/src/type-conversions/others.md b/en/src/type-conversions/others.md index 3f06945c6..938fa5b9e 100644 --- a/en/src/type-conversions/others.md +++ b/en/src/type-conversions/others.md @@ -165,4 +165,4 @@ fn main() { } ``` -> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/type-conversions/others.md)(under the solutions path), but only use it when you need it +> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/type-conversions/others.md) (under the solutions path), but only use it when you need it diff --git a/en/src/variables.md b/en/src/variables.md index fc22c6670..23c35f0a2 100644 --- a/en/src/variables.md +++ b/en/src/variables.md @@ -155,4 +155,4 @@ fn main() { ``` -> 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 +> 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 From c0ec55093727b65fe8dfb06f9ab44f5093174acb Mon Sep 17 00:00:00 2001 From: Gregor Gatej Date: Thu, 17 Jul 2025 12:34:09 +0200 Subject: [PATCH 3/3] Add missing semicolon --- en/src/basic-types/statements-expressions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/src/basic-types/statements-expressions.md b/en/src/basic-types/statements-expressions.md index bf5a60470..91409645c 100644 --- a/en/src/basic-types/statements-expressions.md +++ b/en/src/basic-types/statements-expressions.md @@ -63,7 +63,7 @@ fn main() { } fn sum(x: i32, y: i32) -> i32 { - x + y + x + y; } ```