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.
This commit is contained in:
Mateus Rodolfo 2023-02-13 19:44:28 +01:00 committed by Carol (Nichols || Goulding)
parent d94e03a18a
commit 21a2ed14f4
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ First, you arent allowed to use `mut` with constants. Constants arent just
immutable by default—theyre always immutable. You declare constants using the
`const` keyword instead of the `let` keyword, and the type of the value *must*
be annotated. Well cover types and type annotations in the next section,
[“Data Types,”][data-types]<!-- ignore -->, so dont worry about the details
[“Data Types”][data-types]<!-- ignore -->, so dont worry about the details
right now. Just know that you must always annotate the type.
Constants can be declared in any scope, including the global scope, which makes