[docs] Fix typo in the effects migration guide

Fixes bug:

  http://bugzilla.openedhand.com/show_bug.cgi?id=1706
This commit is contained in:
Emmanuele Bassi 2009-07-21 09:20:09 +01:00
parent eff857bc7f
commit 605927db5b

View File

@ -116,7 +116,7 @@ on_fade_complete (ClutterActor *actor,
<programlisting>
ClutterAnimation *animation;
animation = clutter_actor_animate (actor, CLUTTER_LINER, 500,
animation = clutter_actor_animate (actor, CLUTTER_LINEAR, 500,
"opacity", 0,
NULL);
g_signal_connect_swapped (animation,
@ -125,7 +125,7 @@ on_fade_complete (ClutterActor *actor,
/* OR */
clutter_actor_animate (actor, CLUTTER_LINER, 500,
clutter_actor_animate (actor, CLUTTER_LINEAR, 500,
"opacity", 0,
"signal-swapped::completed", clutter_actor_hide, actor,
NULL);