Ignore:
Timestamp:
12/27/10 02:41:54 (13 years ago)
Author:
nanardon
Message:
  • add title, keywords and co
  • spelling fix
File:
1 edited

Legend:

Unmodified
Added
Removed
  • server/trunk/web/lib/Sophie/Controller/Chat/Cmd.pm

    r189 r196  
    4646        my $id = $c->forward('/chat/paste', [ 'Bot paste', join("\n", @backup) ]); 
    4747        if ($id) { 
    48             push(@{ $message->{message} }, 'All results availlable here: ' . $c->uri_for('/chat', $id)); 
     48            push(@{ $message->{message} }, 'All results available here: ' . $c->uri_for('/chat', $id)); 
    4949        } 
    5050    } 
     
    125125=head2 help [cmd] 
    126126 
    127 Return help about command cmd or list availlable command.  
     127Return help about command cmd or list available command.  
    128128 
    129129=cut 
     
    133133    if ($cmd) { 
    134134        my @message = grep { /\S+/ } split(/\n/, 
    135             $c->model('Help::POD')->bot_help_text($cmd) || 'No help availlable'); 
     135            $c->model('Help::POD')->bot_help_text($cmd) || 'No help available'); 
    136136        return $c->{stash}->{xmlrpc} = { 
    137137            private_reply => 1, 
     
    142142            private_reply => 1, 
    143143            message => [ 
    144                 'availlable command:', 
     144                'available command:', 
    145145                join(', ', sort grep { $_ !~ /^end$/ } @{ $self->_commands }), 
    146146            ], 
Note: See TracChangeset for help on using the changeset viewer.