Fix comment formatting

This commit is contained in:
Nadav Zingerman 2017-11-05 01:24:20 +02:00
parent 2304b3a7f1
commit 0220600a0d

View File

@ -59,9 +59,9 @@ const LEN_INDEX: usize = 1;
const CTXT_INDEX: usize = 2; const CTXT_INDEX: usize = 2;
// Tag = 0, inline format. // Tag = 0, inline format.
// ----------------------------------- // -------------------------------------------------------------
// | base 31:8 | len 7:1 | ctxt (currently 0 bits) | tag 0:0 | // | 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 // Since there are zero bits for ctxt, only SpanData with a 0 SyntaxContext
// can be inline. // can be inline.
const INLINE_SIZES: [u32; 3] = [24, 7, 0]; const INLINE_SIZES: [u32; 3] = [24, 7, 0];