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

fix "character" typo #1

Merged
merged 1 commit into from
Jun 8, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ Overview of changes from 0.6.1 to 0.7.1

- [MAJOR] Add lacking or incomplete error handlings for port operations

- [MAJOR] Fix incomplete singlebyte charater support
- [MAJOR] Fix incomplete singlebyte character support

- [MAJOR] Fix broken sign extention for 8-bit char on string port read

Expand Down
2 changes: 1 addition & 1 deletion src/format.c
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
"~F\n" \
"~wF [Fixed] the arg is a string or number which has width w and\n" \
"~w,dF d digits after the decimal\n" \
"~C [Character] charater arg is output by write-char\n" \
"~C [Character] character arg is output by write-char\n" \
"~_ [Space] a single space character is output\n" \
"~Y [Yuppify] the list arg is pretty-printed to the output\n" \
"~? [Indirection] recursive format: next 2 args are format-string and list\n" \
Expand Down
2 changes: 1 addition & 1 deletion test/test-srfi48.scm
Original file line number Diff line number Diff line change
Expand Up @@ -739,7 +739,7 @@ SEQ MNEMONIC DESCRIPTION
~F
~wF [Fixed] the arg is a string or number which has width w and
~w,dF d digits after the decimal
~C [Character] charater arg is output by write-char
~C [Character] character arg is output by write-char
~_ [Space] a single space character is output
~Y [Yuppify] the list arg is pretty-printed to the output
~? [Indirection] recursive format: next 2 args are format-string and list
Expand Down