fix: Change then to than

`than` makes more grammatical sense than `then` in this context.
This commit is contained in:
iamcastelli 2020-06-27 15:58:53 +04:00 committed by GitHub
parent d355927024
commit ddd98ad75d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ hint = """
We know about variables and mutability, but there is another important type of
variable available; constants.
Constants are always immutable and they are declared with keyword 'const' rather
then keyword 'let'.
than keyword 'let'.
Constants types must also always be annotated.
Read more about constants under 'Differences Between Variables and Constants' in the book's section 'Variables and Mutability':