Skip to content

Commit 97e0425

Browse files
committed
Fix typo
1 parent b4f39e0 commit 97e0425

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/pages/basics/variables.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ var x = 1; // Block scope
3232
::: warning Use C# `record` classes for immutability
3333
C#'s `const` keyword does not mean the same thing as in JS. [See the docs](https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/const) to understand the `const` designator in C#.
3434

35-
To achieve immutability, use C# `record` class classes with positional properties (which we'll visit later in [Classes and Types](./classes.md#record-classes)).
35+
To achieve immutability, use C# `record` classes with positional properties (which we'll visit later in [Classes and Types](./classes.md#record-classes)).
3636
:::
3737

3838
## Explicit Types

0 commit comments

Comments
 (0)