repo: rxvt-unicode-sixel action: commit revision: path_from: revision_from: f97003db86a6323a6a54ab75b2016f0a43844ee5: path_to: revision_to:
commit f97003db86a6323a6a54ab75b2016f0a43844ee5 Author: Emanuele GiaquintaDate: Wed Oct 31 15:17:51 2007 +0000 Fix typos, patch by debian. diff --git a/src/urxvt.pm b/src/urxvt.pm
--- a/src/urxvt.pm
+++ b/src/urxvt.pm
@@ -103,7 +103,7 @@ Other extensions can extend this popup menu by pushing a code reference
onto C<@{ $term->{option_popup_hook} }>, which gets called whenever the
popup is being displayed.
-It's sole argument is the popup menu, which can be modified. It should
+Its sole argument is the popup menu, which can be modified. It should
either return nothing or a string, the initial boolean value and a code
reference. The string will be used as button text and the code reference
will be called when the toggle changes, with the new boolean value as
@@ -126,7 +126,7 @@ Other extensions can extend this popup menu by pushing a code reference
onto C<@{ $term->{selection_popup_hook} }>, which gets called whenever the
popup is being displayed.
-It's sole argument is the popup menu, which can be modified. The selection
+Its sole argument is the popup menu, which can be modified. The selection
is in C<$_>, which can be used to decide whether to add something or not.
It should either return nothing or a string and a code reference. The
string will be used as button text and the code reference will be called
@@ -137,7 +137,7 @@ the selection to Cs, but only if the selection currently contains any
Cs:
push @{ $self->{term}{selection_popup_hook} }, sub {
- /a/ ? ("a to be" => sub { s/a/b/g }
+ /a/ ? ("a to b" => sub { s/a/b/g }
: ()
};
@@ -278,7 +278,7 @@ Example configuration:
This (experimental) perl extension implements OnTheSpot editing. It does
not work perfectly, and some input methods don't seem to work well with
-OnTheSpot editing in general, but it seems to work at leats for SCIM and
+OnTheSpot editing in general, but it seems to work at least for SCIM and
kinput2.
You enable it by specifying this extension and a preedit style of
@@ -296,7 +296,7 @@ or show it again.
Initially, the window will not be shown when using this extension.
-This is useful if you need a single terminal thats not using any desktop
+This is useful if you need a single terminal that is not using any desktop
space most of the time but is quickly available at the press of a key.
The accelerator key is grabbed regardless of any modifiers, so this
@@ -331,7 +331,7 @@ Displays a digital clock using the built-in overlay.
=item remote-clipboard
Somewhat of a misnomer, this extension adds two menu entries to the
-selection popup that allows one ti run external commands to store the
+selection popup that allows one to run external commands to store the
selection somewhere and fetch it again.
We use it to implement a "distributed selection mechanism", which just
-----END OF PAGE-----