Changeset 10634

Show
Ignore:
Timestamp:
02/08/10 20:01:39 (7 months ago)
Author:
azawawi
Message:

Fixed spelling typo

Location:
trunk/Padre/lib/Padre
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/Padre/lib/Padre/Action/Refactor.pm

    r10436 r10634  
    4848                need_editor => 1, 
    4949                label       => Wx::gettext('Lexically Rename Variable'), 
    50                 comment    => Wx::gettext('Prompt for a replacement variable name and replace all occurrance of this variable'), 
     50                comment    => Wx::gettext('Prompt for a replacement variable name and replace all occurrences of this variable'), 
    5151                menu_event => sub { 
    5252                        my $doc = $_[0]->current->document or return; 
  • trunk/Padre/lib/Padre/Task/PPI/LexicalReplaceVariable.pm

    r10436 r10634  
    2121  my $replacer = Padre::Task::PPI::LexicalReplaceVariable->new( 
    2222          document    => $document_obj, 
    23           location    => [$line, $column], # the position of *any* occurrance of the variable 
     23          location    => [$line, $column], # the position of *any* occurrence of the variable 
    2424          replacement => '$foo', 
    2525  );