chore: Tweak punctuation in variables6.rs hint

While the meaning is still obvious as is, it makes a little more sense
to use a colon here =)
This commit is contained in:
Cooper Gillan 2022-02-25 02:35:43 +00:00
parent e532d9f0d0
commit 57da5d8bb2

View File

@ -78,7 +78,7 @@ path = "exercises/variables/variables6.rs"
mode = "compile" mode = "compile"
hint = """ hint = """
We know about variables and mutability, but there is another important type of We know about variables and mutability, but there is another important type of
variable available; constants. variable available: constants.
Constants are always immutable and they are declared with keyword 'const' rather Constants are always immutable and they are declared with keyword 'const' rather
than keyword 'let'. than keyword 'let'.
Constants types must also always be annotated. Constants types must also always be annotated.