diff --git a/src/applications/phame/config/PhabricatorPhameConfigOptions.php b/src/applications/phame/config/PhabricatorPhameConfigOptions.php
index e294a2796..4931623d9 100644
--- a/src/applications/phame/config/PhabricatorPhameConfigOptions.php
+++ b/src/applications/phame/config/PhabricatorPhameConfigOptions.php
@@ -1,27 +1,27 @@
 <?php
 
 final class PhabricatorPhameConfigOptions
   extends PhabricatorApplicationConfigOptions {
 
   public function getName() {
     return pht("Phame");
   }
 
   public function getDescription() {
     return pht("Configure Phame blogs.");
   }
 
   public function getOptions() {
     return array(
       $this->newOption(
         'phame.skins',
         'list<string>',
         array(
-          'exterals/skins/',
+          'externals/skins/',
         ))
         ->setDescription(
           pht('List of directories where Phame will look for skins.')),
     );
   }
 
 }