diff --git a/TTS/.models.json b/TTS/.models.json
index 4805ddba..1d416245 100644
--- a/TTS/.models.json
+++ b/TTS/.models.json
@@ -66,7 +66,7 @@
         },
         "en": {
             "ljspeech":{
-                "mulitband-melgan":{
+                "multiband-melgan":{
                     "model_file": "1Ty5DZdOc0F7OTGj9oJThYbL5iVu_2G0K",
                     "config_file": "1Rd0R_nRCrbjEdpOwq6XwZAktvugiBvmu",
                     "stats_file": "11oY3Tv0kQtxK_JPgxrfesa99maVXHNxU",
@@ -75,4 +75,4 @@
             }
         }
     }
-}
\ No newline at end of file
+}
diff --git a/TTS/bin/synthesize.py b/TTS/bin/synthesize.py
index e0d214d5..12829acd 100755
--- a/TTS/bin/synthesize.py
+++ b/TTS/bin/synthesize.py
@@ -77,7 +77,7 @@ def main():
     parser.add_argument(
         '--vocoder_name',
         type=str,
-        default="vocoder_models/en/ljspeech/mulitband-melgan",
+        default="vocoder_models/en/ljspeech/multiband-melgan",
         help=
         'Name of one of the pre-trained  vocoder models in format <language>/<dataset>/<model_name>'
     )
diff --git a/TTS/server/README.md b/TTS/server/README.md
index a8d8635a..54c85bd6 100644
--- a/TTS/server/README.md
+++ b/TTS/server/README.md
@@ -17,10 +17,10 @@ List officially released models.
 ```python TTS/server/server.py  --list_models ```
 
 Run the server with the official models.
-```python TTS/server/server.py  --model_name tts_models/en/ljspeech/tacotron2-DCA --vocoder_name vocoder_models/en/ljspeech/mulitband-melgan```
+```python TTS/server/server.py  --model_name tts_models/en/ljspeech/tacotron2-DCA --vocoder_name vocoder_models/en/ljspeech/multiband-melgan```
 
 Run the server with the official models on a GPU.
-```CUDA_VISIBLE_DEVICES="0" python TTS/server/server.py  --model_name tts_models/en/ljspeech/tacotron2-DCA --vocoder_name vocoder_models/en/ljspeech/mulitband-melgan --use_cuda True```
+```CUDA_VISIBLE_DEVICES="0" python TTS/server/server.py  --model_name tts_models/en/ljspeech/tacotron2-DCA --vocoder_name vocoder_models/en/ljspeech/multiband-melgan --use_cuda True```
 
 Run the server with a custom models.
 ```python TTS/server/server.py  --tts_checkpoint /path/to/tts/model.pth.tar --tts_config /path/to/tts/config.json --vocoder_checkpoint /path/to/vocoder/model.pth.tar --vocoder_config /path/to/vocoder/config.json```