summaryrefslogtreecommitdiff
path: root/data/rbot/plugins/spell.rb
diff options
context:
space:
mode:
Diffstat (limited to 'data/rbot/plugins/spell.rb')
-rw-r--r--data/rbot/plugins/spell.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/data/rbot/plugins/spell.rb b/data/rbot/plugins/spell.rb
index 9ab1deba..9298c286 100644
--- a/data/rbot/plugins/spell.rb
+++ b/data/rbot/plugins/spell.rb
@@ -4,9 +4,9 @@
# :title: Spell plugin
class SpellPlugin < Plugin
- Config.register Config::StringValue.new('spell.program',
- :default => 'ispell',
- :desc => _('Program to use to check spelling'))
+ Config.register Config::StringValue.new('spell.path',
+ :default => '/usr/bin/ispell',
+ :desc => _('Path to the program to use to check spelling'))
Config.register Config::StringValue.new('spell.command_line',
:default => '%s -a -S',
:desc => _('Command line used to call the spell.program. Use %s as a placeholder for the executable name'))