about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/libsyntax_pos/span_encoding.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libsyntax_pos/span_encoding.rs b/src/libsyntax_pos/span_encoding.rs
index 1ecfb783b3d..b23e40ce7a9 100644
--- a/src/libsyntax_pos/span_encoding.rs
+++ b/src/libsyntax_pos/span_encoding.rs
@@ -59,9 +59,9 @@ const LEN_INDEX: usize = 1;
 const CTXT_INDEX: usize = 2;
 
 // Tag = 0, inline format.
-// -----------------------------------
+// -------------------------------------------------------------
 // | base 31:8  | len 7:1  | ctxt (currently 0 bits) | tag 0:0 |
-// -----------------------------------
+// -------------------------------------------------------------
 // Since there are zero bits for ctxt, only SpanData with a 0 SyntaxContext
 // can be inline.
 const INLINE_SIZES: [u32; 3] = [24, 7, 0];