Skip to content

Commit b755ea5

Browse files
committed
[css-speech-1] Fix indentation
1 parent 7d467cf commit b755ea5

File tree

1 file changed

+23
-23
lines changed

1 file changed

+23
-23
lines changed

css-speech-1/Overview.bs

+23-23
Original file line numberDiff line numberDiff line change
@@ -1422,43 +1422,43 @@ The 'voice-range' property</h3>
14221422
depends on the current voice) */
14231423

14241424
e1 { voice-range: +25%; } /* the computed value is
1425-
['medium' + 25%] which resolves
1426-
to the frequency corresponding to 'medium'
1427-
plus 0.25 times the frequency
1428-
corresponding to 'medium' */
1425+
['medium' + 25%] which resolves
1426+
to the frequency corresponding to 'medium'
1427+
plus 0.25 times the frequency
1428+
corresponding to 'medium' */
14291429

14301430
e2 { voice-range: +10Hz; } /* the computed value is
1431-
[FREQ + 10Hz] where "FREQ" is the absolute frequency
1432-
calculated in the "e1" rule above. */
1431+
[FREQ + 10Hz] where "FREQ" is the absolute frequency
1432+
calculated in the "e1" rule above. */
14331433

14341434
e3 { voice-range: inherit; /* this could be omitted,
1435-
but we explicitly specify it for clarity purposes */
1435+
but we explicitly specify it for clarity purposes */
14361436

14371437
voice-family: "another-voice"; } /* this voice change would have resulted in
1438-
the re-evaluation of the initial 'medium' keyword
1439-
inherited by the "body" element
1440-
(i.e. conversion from a voice-dependent keyword value
1441-
to a concrete, absolute frequency),
1442-
but because relative offsets were applied down the style
1443-
cascade, the inherited value is actually the frequency
1444-
calculated at the "e2" rule above. */
1438+
the re-evaluation of the initial 'medium' keyword
1439+
inherited by the "body" element
1440+
(i.e. conversion from a voice-dependent keyword value
1441+
to a concrete, absolute frequency),
1442+
but because relative offsets were applied down the style
1443+
cascade, the inherited value is actually the frequency
1444+
calculated at the "e2" rule above. */
14451445

14461446
e4 { voice-range: 200Hz absolute; } /* override with an absolute frequency
1447-
which doesn't depend on the current voice */
1447+
which doesn't depend on the current voice */
14481448

14491449
e5 { voice-range: 2st; } /* the computed value is an absolute frequency,
1450-
which is the result of the
1451-
calculation: 200Hz + two semitones
1452-
(reminder: the actual frequency corresponding to a semitone
1453-
depends on the base value to which it applies) */
1450+
which is the result of the
1451+
calculation: 200Hz + two semitones
1452+
(reminder: the actual frequency corresponding to a semitone
1453+
depends on the base value to which it applies) */
14541454

14551455
e6 { voice-range: inherit; /* this could be omitted,
1456-
but we explicitly specify it for clarity purposes */
1456+
but we explicitly specify it for clarity purposes */
14571457

14581458
voice-family: "yet-another-voice"; } /* despite the voice change,
1459-
the computed value is the same as
1460-
for "e5" (i.e. an absolute frequency value,
1461-
independent from the current voice) */
1459+
the computed value is the same as
1460+
for "e5" (i.e. an absolute frequency value,
1461+
independent from the current voice) */
14621462
</pre>
14631463
</div>
14641464
<h3 id="voice-props-voice-stress">

0 commit comments

Comments
 (0)