Skip to content
This repository has been archived by the owner on Oct 10, 2019. It is now read-only.

Commit

Permalink
Fix some more speling mistakes.
Browse files Browse the repository at this point in the history
  • Loading branch information
uqs committed Feb 29, 2012
1 parent 6d35412 commit bb403cc
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions doc/chapter-cmdline.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ cycle through all results. If no match is found, no suggestion will be inserted
into the commandline. For the "set" command, the completion also works for
configuration variable names.

In additon, some common key combination such as Ctrl-G (to cancel input),
In addition, some common key combination such as Ctrl-G (to cancel input),
Ctrl-K (to delete text from the cursor position to the end of line), Ctrl-U (to
clear the whole line) and Ctrl-W (to delete the word before the current cursor
position) were added.

Please be aware that the input history of both the command line and the search
functions are saved to the filesystems, to the files
\~/.newsbeuter/history.cmdline resp. \~/.newsbeuter/history.search. By default,
the last 100 entries are saved, but this can be configured (configuratin
the last 100 entries are saved, but this can be configured (configuration
variable history-limit) and also totally disabled (by setting said variable to
0).

Expand Down
2 changes: 1 addition & 1 deletion doc/example-config
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@
# ignore-mode download

## configuration option: keep-articles-days
## description: If set the a number greater than 0, only articles that are were published within the last <n> days are kept, and older articles are deleted. If set to 0 (default value), this option is not active.
## description: If set to a number greater than 0, only articles that are were published within the last <n> days are kept, and older articles are deleted. If set to 0 (default value), this option is not active.
## parameter syntax: <days>
# keep-articles-days 0

Expand Down
4 changes: 2 additions & 2 deletions doc/hackers-guide.txt
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,8 @@ Use the full potential of modern C++
The C++ standard library comes with an extensive set of algorithms and data
structures. Developers are encouraged to use especially the data structures,
because the available container classes are standardized, their behaviour and
usage is well-documented, and makes it possible to keeep the the overall logic
is a pretty high level. More complex things that can only be done in C (like
usage is well-documented, and makes it possible to keep the overall logic
at a pretty high level. More complex things that can only be done in C (like
special system calls) /should/ be encapsulated by a wrapper class in order to
avoid potential mis-use of low-level functions and data structures. Good
examples for wrapping low-level stuff are *class rss_feed*, *class rss_item*
Expand Down
8 changes: 4 additions & 4 deletions doc/newsbeuter.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Why "Newsbeuter"?
"Newsbeuter" is a pun on the German word "Wildbeuter", which means
"hunter-gatherer". During the stone age, people hunted and gathered their food,
and these days, they hunt and gather news and information. Credits for this
idea goes to Clifford Wolf, who submitted it to a little competiton that was
idea goes to Clifford Wolf, who submitted it to a little competition that was
started when I got aware that the original name would violate French and
European registered trademarks.

Expand Down Expand Up @@ -702,8 +702,8 @@ In addition, newsbeuter provides other, more powerful sequences, such as
right on the screen, and characters between the text on the left and the text
on the right will be filled by "[char]". Another powerful format is the
conditional sequence, "%?[char]?[format 1]&[format 2]?": if the text of the
sequence identifier "[char]" is non-empty, then "[format 1]" will be evaluted
and inserted, otherwise "[format 2]" will be evaluted and inserted. The "&" and
sequence identifier "[char]" is non-empty, then "[format 1]" will be evaluated
and inserted, otherwise "[format 2]" will be evaluated and inserted. The "&" and
"[format 2]" are optional, i.e. if the identifier's text is empty, then an
empty string will be inserted.

Expand Down Expand Up @@ -871,7 +871,7 @@ command.
The syntax is similar to the "highlight" configuration command, with the difference
that there's no need to specify a target (since it only applies in the article list),
and instead of a regular expression, a filter expression is used. After the filter
expression, the colors and attributs are specified in the same way.
expression, the colors and attributes are specified in the same way.

Example:

Expand Down

0 comments on commit bb403cc

Please sign in to comment.