fix typos - sfeed_curses - sfeed curses UI (now part of sfeed, development is i… | |
git clone git://git.codemadness.org/sfeed_curses | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit 464e01040330413f03c8dc575aa5ad1721cb361c | |
parent 284cfb5dc4ba329ad59dcd86b7ad78f450ef9713 | |
Author: Hiltjo Posthuma <[email protected]> | |
Date: Wed, 27 Jan 2021 21:29:53 +0100 | |
fix typos | |
Diffstat: | |
M sfeed_curses.1 | 20 ++++++++++---------- | |
M sfeed_curses.c | 6 +++--- | |
2 files changed, 13 insertions(+), 13 deletions(-) | |
--- | |
diff --git a/sfeed_curses.1 b/sfeed_curses.1 | |
@@ -32,7 +32,7 @@ are processed and shown in the specified argument order in th… | |
Items with a timestamp from the last day compared to the system time at the | |
time of loading the feed are automatically marked as new and bold. | |
There is also an alternative mode available to mark items as read by matching | |
-it against a list of urls from a plain-text file. | |
+it against a list of URLs from a plain-text file. | |
.Pp | |
.Nm | |
aligns the output. | |
@@ -88,12 +88,12 @@ Reset sidebar width to automatic adjustment. | |
.It t | |
Toggle showing only feeds with new items in the sidebar. | |
.It a, e, @ | |
-Plumb url of the enclosure. | |
-The url is passed as a parameter to the program specified in | |
+Plumb URL of the enclosure. | |
+The URL is passed as a parameter to the program specified in | |
.Ev SFEED_PLUMBER . | |
.It o, ENTER, RETURN | |
Feeds pane: load feed and its items. | |
-Items pane: plumb current item url, the url is passed as a parameter to | |
+Items pane: plumb current item URL, the URL is passed as a parameter to | |
the program specified in | |
.Ev SFEED_PLUMBER . | |
.It c, p, | | |
@@ -101,7 +101,7 @@ Pipe the whole TAB-Separated Value line to a program. | |
This program can be specified with | |
.Ev SFEED_PIPER . | |
.It y | |
-Pipe the TAB-Separated Value field for yanking the url to a program. | |
+Pipe the TAB-Separated Value field for yanking the URL to a program. | |
This program can be specified with | |
.Ev SFEED_YANKER . | |
.It E | |
@@ -167,7 +167,7 @@ will wait until the program is finished. | |
If set to "0" then it will suppress stdout and stderr output. | |
By default this is set to "1". | |
.It Ev SFEED_PLUMBER | |
-A program that received the link url or enclosure url as a parameter. | |
+A program that received the link URL or enclosure URL as a parameter. | |
By default this is "xdg-open". | |
.It Ev SFEED_PLUMBER_INTERACTIVE | |
Handle the program interactively in the same terminal or not. | |
@@ -179,7 +179,7 @@ For example this option is useful to open a text-mode brows… | |
terminal. | |
By default this is set to "0". | |
.It Ev SFEED_YANKER | |
-A program where the url or enclosure field is piped to, to copy it to a | |
+A program where the URL or enclosure field is piped to, to copy it to a | |
clipboard. | |
By default this is "xclip -r". | |
.It Ev SFEED_YANKER_INTERACTIVE | |
@@ -192,9 +192,9 @@ By default this is set to "0". | |
.It Ev SFEED_URL_FILE | |
If this variable is set then a different mode is used to mark items as read, | |
instead of checking the timestamp, which is the default. | |
-The value specified is a plain-text file containing a list of read urls, one | |
-url per line. | |
-This url is matched on the link field as specified in | |
+The value specified is a plain-text file containing a list of read URLs, one | |
+URL per line. | |
+This URL is matched on the link field as specified in | |
.Xr sfeed 5 . | |
.It Ev SFEED_MARK_READ | |
A program to mark items as read if | |
diff --git a/sfeed_curses.c b/sfeed_curses.c | |
@@ -299,7 +299,7 @@ strtotime(const char *s, time_t *t) | |
if (errno || *s == '\0' || *e) | |
return -1; | |
/* NOTE: assumes time_t is 64-bit on 64-bit platforms: | |
- long long (atleast 32-bit) to time_t. */ | |
+ long long (at least 32-bit) to time_t. */ | |
if (t) | |
*t = (time_t)l; | |
@@ -2045,7 +2045,7 @@ nextpage: | |
pane_setpos(&panes[PaneFeeds], 0); | |
updatesidebar(); | |
break; | |
- case 'o': /* feeds: load, items: plumb url */ | |
+ case 'o': /* feeds: load, items: plumb URL */ | |
case '\n': | |
p = &panes[selpane]; | |
if (selpane == PaneFeeds && panes[selpane].nrows) { | |
@@ -2069,7 +2069,7 @@ nextpage: | |
case 'c': /* items: pipe TSV line to program */ | |
case 'p': | |
case '|': | |
- case 'y': /* yank: pipe TSV field to yank url to clipboard */ | |
+ case 'y': /* yank: pipe TSV field to yank URL to clipboard */ | |
case 'E': /* yank: pipe TSV field to yank enclosure to clipboa… | |
if (selpane == PaneItems && panes[selpane].nrows) { | |
p = &panes[selpane]; |