"shopt" can be used to correct typos in cd command.
you can use "cdspell" which will auto correct the directory name you have entered.
Usage: shopt -s cdspell
( -s : set
-u : unset)
$ cd /usr/local/sben will results in bash: cd: /usr/local/sbEN: No such file or directory
but once you have enabled cdspell option,
$ cd /usr/local/sben ...