Fix another type in the css docs

This commit is contained in:
Matthias Clasen 2016-09-22 11:01:45 -07:00
parent c0048b426b
commit 9aceb34429

View File

@ -942,7 +942,7 @@ arrow {
<para> <para>
To enable an animation, the name of the keyframes must be set as the value To enable an animation, the name of the keyframes must be set as the value
of the animation-name property. The details of the animation can modified of the animation-name property. The details of the animation can modified
with the animation-time, animation-timing-function, animation-iteration-count with the animation-duration, animation-timing-function, animation-iteration-count
and other animation properties. and other animation properties.
</para> </para>
@ -955,7 +955,7 @@ arrow {
spinner { spinner {
animation-name: spin; animation-name: spin;
animation-time: 1s; animation-duration: 1s;
animation-timing-function: linear; animation-timing-function: linear;
animation-iteration-count: infinite; animation-iteration-count: infinite;
} }