From 0220600a0d462e11386a3fa40f304b97adeb3999 Mon Sep 17 00:00:00 2001 From: Nadav Zingerman <7372858+nzig@users.noreply.github.com> Date: Sun, 5 Nov 2017 01:24:20 +0200 Subject: [PATCH] Fix comment formatting --- src/libsyntax_pos/span_encoding.rs | 4 ++-- 1 file 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];