Skip to content

Commit 21a2ed1

Browse files
sourprotoncarols10cents
authored andcommitted
Removed "," typo on ch03-01 line 85
Removed extra comma on line 85. We’ll cover types and type annotations in the next section, “Data Types`,`”, so don’t worry about the details right now.
1 parent d94e03a commit 21a2ed1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ch03-01-variables-and-mutability.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ First, you aren’t allowed to use `mut` with constants. Constants aren’t just
8282
immutable by default—they’re always immutable. You declare constants using the
8383
`const` keyword instead of the `let` keyword, and the type of the value *must*
8484
be annotated. We’ll cover types and type annotations in the next section,
85-
[“Data Types,][data-types]<!-- ignore -->, so don’t worry about the details
85+
[“Data Types”][data-types]<!-- ignore -->, so don’t worry about the details
8686
right now. Just know that you must always annotate the type.
8787

8888
Constants can be declared in any scope, including the global scope, which makes

0 commit comments

Comments
 (0)