Skip to content

Commit 425f8ac

Browse files
committed
[css-values-4][editorial] Consistent subscript casing.
1 parent e1e85af commit 425f8ac

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

css-values-4/Overview.bs

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ Combining Values: Interpolation, Addition, and Accumulation</h2>
533533
If a value type does not define a specific procedure for <a>addition</a>
534534
or is defined as <dfn export>not additive</dfn>,
535535
its <a>addition</a> operation is simply
536-
<var>V<sub>result</sub></var> = <var>V<sub>b</sub></var>.
536+
<var>V<sub>result</sub></var> = <var>V<sub>B</sub></var>.
537537

538538
<dt><dfn id="accumulation" lt="value accumulation | accumulation procedure" local-lt="accumulate | accumulation">accumulation</dfn>
539539
<dd>
@@ -1273,14 +1273,14 @@ Computation and Combination of <<integer>></h4>
12731273
<a>Interpolation</a> of <<integer>> is defined as
12741274
<var>V</var><sub>result</sub> =
12751275
round((1 - <var>p</var>) &times; <var>V<sub>A</sub></var> +
1276-
<var>p</var> &times; <var>V<sub>b</sub></var>);
1276+
<var>p</var> &times; <var>V<sub>B</sub></var>);
12771277
that is, interpolation happens in the real number space
12781278
as for <<number>>s, and the result is converted to an <<integer>>
12791279
by [=rounding to the nearest integer=].
12801280

12811281
<a>Addition</a> of <<integer>> is defined as
12821282
<var>V<sub>result</sub></var> =
1283-
<var>V<sub>A</sub></var> + <var>V<sub>b</sub></var>
1283+
<var>V<sub>A</sub></var> + <var>V<sub>B</sub></var>
12841284

12851285
<wpt>
12861286
css/css-values/calc-positive-fraction-001.html
@@ -1338,11 +1338,11 @@ Computation and Combination of <<number>></h4>
13381338
<a>Interpolation</a> of <<number>> is defined as
13391339
<var>V</var><sub>result</sub> =
13401340
(1 - <var>p</var>) &times; <var>V<sub>A</sub></var> +
1341-
<var>p</var> &times; <var>V<sub>b</sub></var>
1341+
<var>p</var> &times; <var>V<sub>B</sub></var>
13421342

13431343
<a>Addition</a> of <<number>> is defined as
13441344
<var>V<sub>result</sub></var> =
1345-
<var>V<sub>A</sub></var> + <var>V<sub>b</sub></var>
1345+
<var>V<sub>A</sub></var> + <var>V<sub>B</sub></var>
13461346

13471347
<h3 id='dimensions'>
13481348
Numbers with Units: <a>dimension</a> values</h3>
@@ -1403,11 +1403,11 @@ Combination of Dimensions</h4>
14031403
is defined as
14041404
<var>V</var><sub>result</sub> =
14051405
(1 - <var>p</var>) &times; <var>V<sub>A</sub></var> +
1406-
<var>p</var> &times; <var>V<sub>b</sub></var>
1406+
<var>p</var> &times; <var>V<sub>B</sub></var>
14071407

14081408
<a>Addition</a> of <a>compatible</a> <a>dimensions</a> is defined as
14091409
<var>V<sub>result</sub></var> =
1410-
<var>V<sub>A</sub></var> + <var>V<sub>b</sub></var>
1410+
<var>V<sub>A</sub></var> + <var>V<sub>B</sub></var>
14111411

14121412
<!--
14131413
█████ ██
@@ -1456,11 +1456,11 @@ Computation and Combination of <<percentage>></h4>
14561456
<a>Interpolation</a> of <<percentage>> is defined as
14571457
<var>V</var><sub>result</sub> =
14581458
(1 - <var>p</var>) &times; <var>V<sub>A</sub></var> +
1459-
<var>p</var> &times; <var>V<sub>b</sub></var>
1459+
<var>p</var> &times; <var>V<sub>B</sub></var>
14601460

14611461
<a>Addition</a> of <<percentage>> is defined as
14621462
<var>V<sub>result</sub></var> =
1463-
<var>V<sub>A</sub></var> + <var>V<sub>b</sub></var>
1463+
<var>V<sub>A</sub></var> + <var>V<sub>B</sub></var>
14641464

14651465
<h3 id="mixed-percentages">
14661466
Mixing Percentages and Dimensions</h3>
@@ -1523,11 +1523,11 @@ Computation and Combination of Percentage and Dimension Mixes</h4>
15231523
<ul>
15241524
<li>
15251525
equivalent to <a>interpolation</a> of <<length>>
1526-
if both <var>V<sub>A</sub></var> and <var>V<sub>b</sub></var> are pure <<length>> values
1526+
if both <var>V<sub>A</sub></var> and <var>V<sub>B</sub></var> are pure <<length>> values
15271527

15281528
<li>
15291529
equivalent to <a>interpolation</a> of <<percentage>>
1530-
if both <var>V<sub>A</sub></var> and <var>V<sub>b</sub></var> are pure <<percentage>> values
1530+
if both <var>V<sub>A</sub></var> and <var>V<sub>B</sub></var> are pure <<percentage>> values
15311531
<li>
15321532
equivalent to converting both values into a ''calc()'' expression
15331533
representing the sum of the dimension type and a percentage
@@ -4940,15 +4940,15 @@ Combination of Math Functions</h3>
49404940
with each other
49414941
or with numeric values and other numeric-valued functions,
49424942
is defined as
4943-
V<sub>result</sub> = calc((1 - p) * V<sub>A</sub> + p * V<sub>b</sub>).
4943+
V<sub>result</sub> = calc((1 - p) * V<sub>A</sub> + p * V<sub>B</sub>).
49444944
([=simplify a calculation tree|Simplification=] of the value might then reduce the expression
49454945
to a smaller, simpler form.)
49464946

49474947
[=Addition=] of [=math functions=],
49484948
with each other
49494949
or with numeric values and other numeric-valued functions,
49504950
is defined as
4951-
V<sub>result</sub> = calc(V<sub>A</sub> + V<sub>b</sub>).
4951+
V<sub>result</sub> = calc(V<sub>A</sub> + V<sub>B</sub>).
49524952
([=simplify a calculation tree|Simplification=] of the value might then reduce the expression
49534953
to a smaller, simpler form.)
49544954

0 commit comments

Comments
 (0)