- From: David Baron via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 17 Feb 2012 20:09:23 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css3-transitions
In directory hutz:/tmp/cvs-serv16100
Modified Files:
Overview.html Overview.src.html
Log Message:
Spell-check the specification. This includes capitalizing Bézier and using the accent (in prose, not code, of course).
Index: Overview.html
===================================================================
RCS file: /sources/public/csswg/css3-transitions/Overview.html,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -d -r1.30 -r1.31
--- Overview.html 17 Feb 2012 02:30:21 -0000 1.30
+++ Overview.html 17 Feb 2012 20:09:21 -0000 1.31
@@ -475,9 +475,9 @@
<p> Timing functions are either defined as a stepping function or a <a
href="http://en.wikipedia.org/wiki/B%C3%A9zier_curve#Cubic_B.C3.A9zier_curves">cubic
- bezier curve</a>. The timing function takes as its input the current
- elapsed percentage of the transition duration and outputs a percentage
- that determines how close the transition is to its goal state.
+ Bézier curve</a>. The timing function takes as its input the
+ current elapsed percentage of the transition duration and outputs a
+ percentage that determines how close the transition is to its goal state.
<p> A <a href="http://en.wikipedia.org/wiki/Step_function">stepping</a>
function is defined by a number that divides the domain of operation into
@@ -494,9 +494,10 @@
<p> A <a
href="http://en.wikipedia.org/wiki/B%C3%A9zier_curve#Cubic_B.C3.A9zier_curves">cubic
- bezier curve</a> is defined by four control points, P<sub>0</sub> through
- P<sub>3</sub> (see Figure 1). P<sub>0</sub> and P<sub>3</sub> are always
- set to (0,0) and (1,1). The <a href="#transition-timing-function"><code
+ Bézier curve</a> is defined by four control points, P<sub>0</sub>
+ through P<sub>3</sub> (see Figure 1). P<sub>0</sub> and P<sub>3</sub> are
+ always set to (0,0) and (1,1). The <a
+ href="#transition-timing-function"><code
class=property>'transition-timing-function'</code></a> property is used to
specify the values for points P<sub>1</sub> and P<sub>2</sub>. These can
be set to preset values using the keywords listed below, or can be set to
@@ -505,10 +506,10 @@
P<sub>2</sub> are each specified by both an X and Y value.
<div class=figure> <img
- alt="The bezier timing function is a smooth curve from point P0 = (0,0) to point P3 = (1,1). The length and orientation of the line segment P0-P1 determines the tangent and the curvature of the curve at P0 and the line segment P2-P3 does the same at P3."
+ alt="The Bézier timing function is a smooth curve from point P0 = (0,0) to point P3 = (1,1). The length and orientation of the line segment P0-P1 determines the tangent and the curvature of the curve at P0 and the line segment P2-P3 does the same at P3."
src=TimingFunction.png></div>
- <p class=caption> Bezier Timing Function Control Points
+ <p class=caption> Bézier Timing Function Control Points
<table class=propdef>
<tbody>
@@ -700,8 +701,8 @@
value that can be parsed as a time is assigned to transition-delay.
<p class=issue> An alternative proposal is to accept the font shorthand
- approach of using a "/" character between the values of the same type. eg.
- 2s/4s would mean a duration of 2 seconds and a delay of 4 seconds.
+ approach of using a "/" character between the values of the same type.
+ e.g. 2s/4s would mean a duration of 2 seconds and a delay of 4 seconds.
<table class=propdef>
<tbody>
@@ -801,7 +802,7 @@
result in behavior that varies between implementations, since the changes
might be considered simultaneous in some implementations but not others.
- <p class=note>Say something about simulaneity
+ <p class=note>Say something about simultaneity
<p> Once the transition of a property has started, it must continue running
based on the original timing function, duration, and delay, even if the
Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/css3-transitions/Overview.src.html,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -d -r1.32 -r1.33
--- Overview.src.html 17 Feb 2012 02:30:21 -0000 1.32
+++ Overview.src.html 17 Feb 2012 20:09:21 -0000 1.33
@@ -380,7 +380,7 @@
Timing functions are either defined as a stepping function or
a <a
href="http://en.wikipedia.org/wiki/B%C3%A9zier_curve#Cubic_B.C3.A9zier_curves">cubic
- bezier curve</a>.
+ Bézier curve</a>.
The timing function takes as its input the current elapsed percentage of
the transition duration and outputs a percentage that determines how
close the transition is to its goal state.
@@ -414,7 +414,7 @@
<p>
A <a
href="http://en.wikipedia.org/wiki/B%C3%A9zier_curve#Cubic_B.C3.A9zier_curves">cubic
- bezier curve</a> is defined by four control points, P<sub>0</sub>
+ Bézier curve</a> is defined by four control points, P<sub>0</sub>
through P<sub>3</sub> (see Figure 1). P<sub>0</sub> and P<sub>3</sub>
are always set to (0,0) and (1,1). The <code class="property">'transition-timing-function'</code> property is used
to specify the values for points P<sub>1</sub> and P<sub>2</sub>. These
@@ -424,14 +424,14 @@
P<sub>2</sub> are each specified by both an X and Y value.
</p>
<div class="figure">
- <img src="TimingFunction.png" alt="The bezier timing function is a
+ <img src="TimingFunction.png" alt="The Bézier timing function is a
smooth curve from point P0 = (0,0) to point P3 = (1,1). The
length and orientation of the line segment P0-P1 determines
the tangent and the curvature of the curve at P0 and the
line segment P2-P3 does the same at P3.">
</div>
<p class="caption">
- Bezier Timing Function Control Points
+ Bézier Timing Function Control Points
</p>
<table class="propdef">
<tbody>
@@ -661,7 +661,7 @@
</p>
<p class="issue">
An alternative proposal is to accept the font shorthand approach of
- using a "/" character between the values of the same type. eg. 2s/4s would
+ using a "/" character between the values of the same type. e.g. 2s/4s would
mean a duration of 2 seconds and a delay of 4 seconds.
</p>
<table class="propdef">
@@ -770,7 +770,7 @@
implementations, since the changes might be considered
simultaneous in some implementations but not others.
</p>
- <p class="note">Say something about simulaneity</p>
+ <p class="note">Say something about simultaneity</p>
<p>
Once the transition of a property has started, it must continue
Received on Friday, 17 February 2012 20:09:39 UTC