Skip to content

Commit 6631d13

Browse files
committed
[css-values-4] Use consistent capitalization.
1 parent 5d171bf commit 6631d13

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

css-values-4/Overview.bs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -357,21 +357,21 @@ Combining Values: Interpolation, Addition, and Accumulation</h2>
357357
and <a href="https://www.w3.org/TR/css-animations/">animations</a>,
358358
<dfn export>combine</dfn> two CSS property values.
359359
The following combining operations--
360-
on the two <a>computed values</a> <var>V<sub>a</sub></var> and <var>V<sub>B</sub></var>
360+
on the two <a>computed values</a> <var>V<sub>A</sub></var> and <var>V<sub>B</sub></var>
361361
yielding the <a>computed value</a> <var>V<sub>result</sub></var>--
362362
are defined:
363363

364364
<dl export>
365365
<dt><dfn id="interpolation" lt="interpolation | interpolate | value interpolation | interpolation procedure">interpolation</dfn>
366366
<dd>
367367
Given two property values
368-
<var>V<sub>a</sub></var> and <var>V<sub>B</sub></var>,
368+
<var>V<sub>A</sub></var> and <var>V<sub>B</sub></var>,
369369
produces an intermediate value
370370
<var>V<sub>result</sub></var>
371371
at a distance of <var>p</var>
372372
along the interval between
373-
<var>V<sub>a</sub></var> and <var>V<sub>B</sub></var>
374-
such that <var>p</var> = 0 produces <var>V<sub>a</sub></var>
373+
<var>V<sub>A</sub></var> and <var>V<sub>B</sub></var>
374+
such that <var>p</var> = 0 produces <var>V<sub>A</sub></var>
375375
and <var>p</var> = 1 produces <var>V</var><sub>B</sub>.
376376

377377
The range of <var>p</var> is (&minus;&infin;, &infin;)
@@ -382,12 +382,12 @@ Combining Values: Interpolation, Addition, and Accumulation</h2>
382382
<dt><dfn id="addition" lt="value addition | addition procedure" local-lt="add | addition">addition</dfn>
383383
<dd>
384384
Given two property values
385-
<var>V<sub>a</sub></var> and <var>V<sub>B</sub></var>,
385+
<var>V<sub>A</sub></var> and <var>V<sub>B</sub></var>,
386386
returns the sum of the two properties,
387387
<var>V</var><sub>result</sub>.
388388
For addition that is not commutative
389389
(for example, matrix multiplication)
390-
<var>V<sub>a</sub></var> represents
390+
<var>V<sub>A</sub></var> represents
391391
the first term of the operation and
392392
<var>V<sub>B</sub></var> represents
393393
the second.
@@ -404,14 +404,14 @@ Combining Values: Interpolation, Addition, and Accumulation</h2>
404404
<dt><dfn id="accumulation" lt="value accumulation | accumulation procedure" local-lt="accumulate | accumulation">accumulation</dfn>
405405
<dd>
406406
Given two property values
407-
<var>V<sub>a</sub></var> and <var>V<sub>B</sub></var>,
407+
<var>V<sub>A</sub></var> and <var>V<sub>B</sub></var>,
408408
returns the result, <var>V<sub>result</sub></var>,
409409
of combining the two operands
410410
such that <var>V<sub>B</sub></var>
411-
is treated as a <em>delta</em> from <var>V<sub>a</sub></var>.
411+
is treated as a <em>delta</em> from <var>V<sub>A</sub></var>.
412412
For accumulation that is not commutative
413413
(for example, accumulation of mismatched transform lists)
414-
<var>V<sub>a</sub></var> represents the first term of the operation
414+
<var>V<sub>A</sub></var> represents the first term of the operation
415415
and <var>V<sub>B</sub></var> represents the second.
416416

417417
<div class="note">

0 commit comments

Comments
 (0)