diff options
| author | Marcus Klaas <mail@marcusklaas.nl> | 2015-09-26 23:16:11 +0200 |
|---|---|---|
| committer | Marcus Klaas <mail@marcusklaas.nl> | 2015-09-26 23:18:57 +0200 |
| commit | 2d4a0cbe3b7a4c8f94bb1d422993ff856d714dae (patch) | |
| tree | 9f251622d3e61c8e791208e9388454dcfb26dfa6 /src/lib.rs | |
| parent | 078fff068a3d0e5401bd46214c112cb9276a6240 (diff) | |
Fix match arm indentation bug
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs index 73184a0bdc1..b483cae60d4 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -85,9 +85,9 @@ const SKIP_ANNOTATION: &'static str = "rustfmt_skip"; pub struct Indent { // Width of the block indent, in characters. Must be a multiple of // Config::tab_spaces. - block_indent: usize, + pub block_indent: usize, // Alignment in characters. - alignment: usize, + pub alignment: usize, } impl Indent { |
