Merge pull request #233 from gkotian/master

More minor fixes
This commit is contained in:
Brian Schott 2016-02-29 15:16:11 -08:00
commit 2145766d89
2 changed files with 2 additions and 2 deletions

View File

@ -82,7 +82,7 @@ insert_final_newline | | `true` | Not supported. `dfmt` always inserts a final n
charset | | `UTf-8` | Not supported. `dfmt` only works correctly on UTF-8.
indent_style | `tab`, `space` | `space` | [See EditorConfig documentation.](https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties#indent_style)
indent_size | positive integers | `4` | [See EditorConfig documentation.](https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties#indent_size)
tab_width | positive integers | `8` | [See EditorConfig documentation.](https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties#tab_width)
tab_width | positive integers | `4` | [See EditorConfig documentation.](https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties#tab_width)
trim_trailing_whitespace | | `true` | Not supported. `dfmt` does not emit trailing whitespace.
max_line_length | positive integers | `120` | [See EditorConfig documentation.](https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties#max_line_length)
### dfmt-specific properties

View File

@ -30,7 +30,7 @@ bool isTempIndent(IdType type) pure nothrow @nogc @safe
struct IndentStack
{
/**
* Get the indent size at the most recent occurence of the given indent type
* Get the indent size at the most recent occurrence of the given indent type
*/
int indentToMostRecent(IdType item) const
{