fix: Fix typo (#34779)

Changed "chack" for "check"
This commit is contained in:
Francisco Gutierrez
2019-02-28 12:41:55 -08:00
committed by Randell Dawson
parent b98213dd29
commit fadea0cfe8

View File

@ -125,7 +125,7 @@ You will need to figure out where the missing letter is, along with handling the
### Code Explanation: ### Code Explanation:
* Loop over the string * Loop over the string
* Check if the difference in char codes between adjacent characters in the string is more than 1 (chack ASCII table) * Check if the difference in char codes between adjacent characters in the string is more than 1 (check ASCII table)
* Return the missing character ( +1 from where the gap was detected) * Return the missing character ( +1 from where the gap was detected)
## ![:rotating_light:](https://forum.freecodecamp.com/images/emoji/emoji_one/rotating_light.png?v=3 ":rotating_light:") Advanced Code Solution: ## ![:rotating_light:](https://forum.freecodecamp.com/images/emoji/emoji_one/rotating_light.png?v=3 ":rotating_light:") Advanced Code Solution: