From ddd98ad75d3668fbb10eff74374148aa5ed2344d Mon Sep 17 00:00:00 2001
From: iamcastelli <smujjuzi@gmail.com>
Date: Sat, 27 Jun 2020 15:58:53 +0400
Subject: [PATCH] fix: Change then to than

`than` makes more grammatical sense than `then` in this context.
---
 info.toml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/info.toml b/info.toml
index ee4ab2f6..46e353ff 100644
--- a/info.toml
+++ b/info.toml
@@ -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':