Skip to content

Commit 66d2fe0

Browse files
committed
Clean up cache states section
1 parent 163c662 commit 66d2fe0

File tree

1 file changed

+28
-20
lines changed

1 file changed

+28
-20
lines changed

site/static/compare.html

Lines changed: 28 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -240,43 +240,51 @@ <h2>Comparing <span id="stat-header">{{stat}}</span> between <span id="before">{
240240
<div class=" section">
241241
<div class="section-heading">
242242
<div style="width: 160px;">
243-
<span>Cache states</span>
244-
<span class="tooltip">?<span class="tooltiptext">
245-
Most benchmarks have at least 4 cache states for which we collect data</span>
243+
<span>Build types</span>
244+
<span class="tooltip">?
245+
<span class="tooltiptext">
246+
The different types of builds based on their incremental compilation cache state and
247+
what has changed since the last build.
248+
</span>
246249
</span>
247250
</div>
248251
</div>
249252
<ul id="states-list">
250253
<li><input type="checkbox" id="build-full" v-model="filter.cache.full" /><span
251254
class="cache-label">full</span>
252-
<div class="tooltip">?<span class="tooltiptext">A
253-
non-incremental full build starting with empty cache</span></div>
255+
<div class="tooltip">?
256+
<span class="tooltiptext">
257+
A non-incremental full build starting with empty cache.
258+
</span>
259+
</div>
254260
</li>
255261
<li><input type="checkbox" id="build-incremental-full" v-model="filter.cache.incrFull" /> <span
256262
class="cache-label">incr-full</span>
257-
<div class="tooltip">?<span class="tooltiptext">An incremental build
258-
starting
259-
with empty cache
260-
</span></div>
263+
<div class="tooltip">?
264+
<span class="tooltiptext">
265+
An incremental build starting with empty cache.
266+
</span>
267+
</div>
261268
</li>
262269
<li><input type="checkbox" id="build-incremental-unchanged"
263270
v-model="filter.cache.incrUnchanged" />
264271
<span class="cache-label">incr-unchanged</span>
265-
<div class="tooltip">?<span class="tooltiptext">An
266-
incremental
267-
build
268-
starting with complete
269-
cache, and unchanged source directory -- the "perfect" scenario for
270-
incremental.</span>
272+
<div class="tooltip">?
273+
<span class="tooltiptext">
274+
An incremental build starting with complete cache, and unchanged source directory --
275+
the "perfect" scenario for incremental.
276+
</span>
271277
</div>
272278
</li>
273279
<li><input type="checkbox" id="build-incremental-patched"
274280
v-model="filter.cache.incrPatched" /><span class="cache-label">incr-patched</span>
275-
<div class="tooltip">?<span class="tooltiptext">An incremental
276-
build
277-
starting with complete cache, and an
278-
altered source directory. The typical variant of this is "println" which represents
279-
the addition of a `println!` macro somewhere in the source code.</span></div>
281+
<div class="tooltip">?
282+
<span class="tooltiptext">
283+
An incremental build starting with complete cache, and an altered source directory.
284+
The typical variant of this is "println" which represents the addition of a
285+
`println!` macro somewhere in the source code.
286+
</span>
287+
</div>
280288
</li>
281289
</ul>
282290
</div>

0 commit comments

Comments
 (0)