Skip to content

Commit 87212f4

Browse files
authored
Clarify mutable variable wording in variables doc (#8976)
1 parent e2c8201 commit 87212f4

File tree

1 file changed

+1
-1
lines changed
  • docs/reference/src/components/cairo/modules/language_constructs/pages

1 file changed

+1
-1
lines changed

docs/reference/src/components/cairo/modules/language_constructs/pages/variables.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ let x = 5_u32;
2626

2727
Variables are immutable unless declared otherwise.
2828
A variable can be declared as mutable using the `mut` keyword.
29-
A mutable variable can be link:assignment-statement.adoc[assigned] a different value after the initialization.
29+
A mutable variable can be link:assignment-statement.adoc[assigned] a different value after initialization.
3030

3131
For example:
3232
[source]

0 commit comments

Comments
 (0)