@@ -105,8 +105,8 @@ def create_timeline_slot(self, edit_rate, slot_id=None):
105105
106106 def create_empty_sequence_slot (self , edit_rate , slot_id = None , media_kind = None ):
107107 """
108- Create an empty timeline slot and sets its segment to a new, empty
109- `aaf2.components.Sequence` component. Timeline slots are for continuous,
108+ Create an empty timeline slot and sets its segment to a new, empty
109+ `aaf2.components.Sequence` component. Timeline slots are for continuous,
110110 monotonically-changing media, like picture and sound.
111111 """
112112 slot = self .create_timeline_slot (edit_rate , slot_id )
@@ -117,22 +117,22 @@ def create_empty_sequence_slot(self, edit_rate, slot_id=None, media_kind=None):
117117
118118 def create_picture_slot (self , edit_rate = 25 ):
119119 """
120- Create an empty timeline slot, with the 'picture' media kind, and sets
120+ Create an empty timeline slot, with the 'picture' media kind, and sets
121121 its segment to a new, empty `aaf2.components.Sequence` component.
122122 """
123123 return self .create_empty_sequence_slot (edit_rate , media_kind = "picture" )
124124
125125 def create_sound_slot (self , edit_rate = 25 ):
126126 """
127- Create an empty timeline slot, with the 'sound' media kind, and sets
127+ Create an empty timeline slot, with the 'sound' media kind, and sets
128128 its segment to a new, empty `aaf2.components.Sequence` component.
129129 """
130130 return self .create_empty_sequence_slot (edit_rate , media_kind = "sound" )
131131
132132 def create_source_clip (self , slot_id = None , start = None , length = None , media_kind = None ):
133133 """
134134 Create a SourceClip of Mobs slot with `slot_id`. If no length given the default
135- length will be the full length of slots segment minius `start`.
135+ length will be the full length of slots segment minus `start`.
136136 Returns :class:`aaf2.components.SourceClip` Object
137137 """
138138 source_slot = self .slot_at (slot_id )
0 commit comments