Skip to content

Commit

Permalink
[fix some typo issue]
Browse files Browse the repository at this point in the history
  • Loading branch information
shabane committed Dec 31, 2023
1 parent 2e2591c commit b705efb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions content/post/rust/variable.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ error[E0384]: cannot assign twice to immutable variable `age`

```

خب برای همین باید اگر می‌خواهم مقدار بمتغیری را تغییر
بدهم آن را از اول مشخص کنم. مشخص کردن آن با کلمه کلیدی
خب برای همین اگر می‌خواهیم مقدار متغیری را تغییر
بدهیم آن را باید از اول مشخص کنیم. مشخص کردن آن با کلمه کلیدی
`mut`
بعد از کلمه
`let`
Expand All @@ -92,7 +92,7 @@ mut
**mutable**
به معنی
**قابل تغییر**
است. خب بیایید اینکار را برای مثال اولیه انجام بدیم.
است. خب بیایید اینکار را برای مثال اولیه انجام بدهیم.

```rust
let mut age: i8 = 22;
Expand Down

0 comments on commit b705efb

Please sign in to comment.