From 355e4bb1e4de3e1287fc684ff5a18f201f3a3ffa Mon Sep 17 00:00:00 2001 From: Daniel Maturana Date: Sun, 30 Mar 2014 06:57:41 -0400 Subject: [PATCH] Fixed small typo in docs --- docs/crash_course/crash_course.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/crash_course/crash_course.rst b/docs/crash_course/crash_course.rst index a45840f56..74c4f3252 100644 --- a/docs/crash_course/crash_course.rst +++ b/docs/crash_course/crash_course.rst @@ -74,7 +74,7 @@ Now ``video`` plays ``clip1``, and ``clip2`` *on top of* ``clip1``, and ``clip3` In a CompositionClip, all the clips start to play at a time that is specified by the ``clip.start`` attribute. You can set this starting time as follows: :: - clip2 = clip1.set_start(5) # start after 5 seconds + clip1 = clip1.set_start(5) # start after 5 seconds So for instance your composition will look like ::