Skip to content

Commit

Permalink
[F] Fix spelling in the documentation strings
Browse files Browse the repository at this point in the history
  • Loading branch information
seleznevae committed Nov 13, 2020
1 parent d9ee76a commit b1c32b6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

- Add builds with gcc-9 to CI.
- Fix invalid pointer to integer cast that might cause problems on some platforms.
- Fix spelling in the documentation strings.

## v0.4.1

Expand Down
8 changes: 4 additions & 4 deletions lib/fort.h
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ int ft_erase_range(ft_table_t *table,
#if defined(FT_CLANG_COMPILER) || defined(FT_GCC_COMPILER)

/**
* Write data formatted acording to the format string to a variety of table
* Write data formatted according to the format string to a variety of table
* cells.
*
* @param table
Expand All @@ -407,7 +407,7 @@ int ft_erase_range(ft_table_t *table,
* the data. The format string consists of ordinary characters (except % and |),
* which are copied unchanged into the output stream, and conversion
* specifications. Conversion specifications are the same as for standard
* printf function. Character '|' (wich can be changed with
* printf function. Character '|' (which can be changed with
* {@link ft_set_default_printf_field_separator}) in the format string is treated as
* a cell separator.
* @param ...
Expand All @@ -424,7 +424,7 @@ int ft_erase_range(ft_table_t *table,
int ft_printf(ft_table_t *table, const char *fmt, ...) FT_PRINTF_ATTRIBUTE_FORMAT(2, 3);

/**
* Write data formatted acording to the format string to a variety of table
* Write data formatted according to the format string to a variety of table
* cells and move current position to the first cell of the next line(row).
*
* @param table
Expand All @@ -434,7 +434,7 @@ int ft_printf(ft_table_t *table, const char *fmt, ...) FT_PRINTF_ATTRIBUTE_FORMA
* the data. The format string consists of ordinary characters (except % and |),
* which are copied unchanged into the output stream, and conversion
* specifications. Conversion specifications are the same as for standard
* printf function. Character '|' (wich can be changed with
* printf function. Character '|' (which can be changed with
* {@link ft_set_default_printf_field_separator}) in the format string is treated as
* a cell separator.
* @param ...
Expand Down
8 changes: 4 additions & 4 deletions src/fort.h
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ int ft_erase_range(ft_table_t *table,
#if defined(FT_CLANG_COMPILER) || defined(FT_GCC_COMPILER)

/**
* Write data formatted acording to the format string to a variety of table
* Write data formatted according to the format string to a variety of table
* cells.
*
* @param table
Expand All @@ -407,7 +407,7 @@ int ft_erase_range(ft_table_t *table,
* the data. The format string consists of ordinary characters (except % and |),
* which are copied unchanged into the output stream, and conversion
* specifications. Conversion specifications are the same as for standard
* printf function. Character '|' (wich can be changed with
* printf function. Character '|' (which can be changed with
* {@link ft_set_default_printf_field_separator}) in the format string is treated as
* a cell separator.
* @param ...
Expand All @@ -424,7 +424,7 @@ int ft_erase_range(ft_table_t *table,
int ft_printf(ft_table_t *table, const char *fmt, ...) FT_PRINTF_ATTRIBUTE_FORMAT(2, 3);

/**
* Write data formatted acording to the format string to a variety of table
* Write data formatted according to the format string to a variety of table
* cells and move current position to the first cell of the next line(row).
*
* @param table
Expand All @@ -434,7 +434,7 @@ int ft_printf(ft_table_t *table, const char *fmt, ...) FT_PRINTF_ATTRIBUTE_FORMA
* the data. The format string consists of ordinary characters (except % and |),
* which are copied unchanged into the output stream, and conversion
* specifications. Conversion specifications are the same as for standard
* printf function. Character '|' (wich can be changed with
* printf function. Character '|' (which can be changed with
* {@link ft_set_default_printf_field_separator}) in the format string is treated as
* a cell separator.
* @param ...
Expand Down

0 comments on commit b1c32b6

Please sign in to comment.