From 7c26dbe028da399c3db2ccc9d786a6c7a3cb622c Mon Sep 17 00:00:00 2001 From: Ryan Gladstone Date: Mon, 11 May 2015 21:38:46 -0400 Subject: [PATCH] correct spelling of "maintain" --- en/02.3.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/02.3.md b/en/02.3.md index b32c9c6c..7d976bfb 100644 --- a/en/02.3.md +++ b/en/02.3.md @@ -120,7 +120,7 @@ Because Go supports multi-value returns and gives compile errors when you don't ### switch -Sometimes you may find that you are using too many `if-else` statements to implement some logic, which may make it difficult to read and maitain in the future. This is the perfect time to use the `switch` statement to solve this problem. +Sometimes you may find that you are using too many `if-else` statements to implement some logic, which may make it difficult to read and maintain in the future. This is the perfect time to use the `switch` statement to solve this problem. switch sExpr { case expr1: