Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Typos found by codespell #12

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc/Input_Format.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ comes the main text content.
* The last sections are usually a subset of these:
* `EXAMPLES` – usage examples and program output.
* `EXIT CODES` – exit codes your program might return in various error conditions.
* `LICENSE` – your program's license, preferrably with a link to the full license text.
* `LICENSE` – your program's license, preferably with a link to the full license text.
* `AUTHOR` – your name and contact information.
* `SEE ALSO` – references to other man pages, plus maybe a link to your project's homepage.

Expand Down Expand Up @@ -140,7 +140,7 @@ Let's mix it up: \fBbold!\fR normal! \fIitalics!\fR normal!

### Comments

* Line comments (`\"`) may appear anyhwere.
* Line comments (`\"`) may appear anywhere.
* The line comment command (`.\"`) is also recognized.
* Block comments can be started with `.ig` and ended with `..`.

Expand Down
2 changes: 1 addition & 1 deletion test/10-test-strings.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ assertRegex "$output" "/\\beeee${YY_USAGE}ffff\\b/" \
# gggg\*(YMhhhh
# Used correctly after .ds string definition, although that .ds definition contains a line continuation.
assertRegex "$output" "/\\bgggg${YM_USAGE}hhhh\\b/" \
"Two-letter string \\*(YM was replaced, but its multi-line .ds defintion was not read correctly!"
"Two-letter string \\*(YM was replaced, but its multi-line .ds definition was not read correctly!"


success
2 changes: 1 addition & 1 deletion test/90-test-bug-authormailurl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ assertRegex "$output" '/\s\[OtherAuthor\]\(https:\/\/other-author.homepage\/\)\s

assertRegex "$output" '/\sThirdAuthor\s+(?:<|&lt;)\[[email protected]\]\(mailto:[email protected]\)(?:>|&gt;)\s/'

# Text block with a simple name followed by an e-mail addres
# Text block with a simple name followed by an e-mail address
# (which should be turned into a link).
## T0
## ThirdAuthor <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion test/samples/comments.roff
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ More text.
.P
Now we'll introduce a block comment:
.ig
This is all gonna go straigt to /dev/null!
This is all gonna go straight to /dev/null!
SENTINEL3
blah blah blah
..
Expand Down
2 changes: 1 addition & 1 deletion test/samples/preformatted.roff
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.TH TESTPROG "7" "January 2020" "testprog 0.9.2" ""
.SH JUST A REGULAR CODE BLOCK
.\" PLAIN
There's a text line between the marker and the .nf block, so nothing special shoud happen.
There's a text line between the marker and the .nf block, so nothing special should happen.
.P
.nf
this is the code block
Expand Down