diff --git a/source/blender/python/api2_2x/doc/Key.py b/source/blender/python/api2_2x/doc/Key.py index 795346491a1..d3dddc104ce 100644 --- a/source/blender/python/api2_2x/doc/Key.py +++ b/source/blender/python/api2_2x/doc/Key.py @@ -11,7 +11,7 @@ data blocks. - MESH - the key is a Mesh key; data blocks contain L{NMVert} vertices. - CURVE - the key is a Curve key; data blocks contains either - L{BezTriples} or points (represented by a list of + L{BezTriples} or points (represented by a list of 3 floating point numbers). - LATTICE - the key is a Lattice key; data blocks contain BPoints, each point represented by a list of 3 floating point numbers. @@ -97,7 +97,7 @@ class KeyBlock: don't have corresponding Python objects yet, so each BPoint is represented using a list of three floating-point numbers (the coordinate for each lattice vertex). - - Curve keys return either a list of L{BezTriple} + - Curve keys return either a list of L{BezTriple} objects in the data if the curve is a Bezier curve, otherwise it returns lists of three floats for each NURB or poly coordinate. """ diff --git a/source/blender/python/api2_2x/doc/NLA.py b/source/blender/python/api2_2x/doc/NLA.py index 1de1cdad577..380ab5de003 100644 --- a/source/blender/python/api2_2x/doc/NLA.py +++ b/source/blender/python/api2_2x/doc/NLA.py @@ -113,7 +113,7 @@ class Action: Get the Ipo for the named channel in this action @type channel: string @param channel: The name of a channel in this action - @rtype: PyIpo + @rtype: PyIpo or None @return: the Ipo for the channel """ @@ -127,6 +127,6 @@ class Action: def getAllChannelIpos(): """ Get the all the Ipos for this action - @rtype: Dictionary [channel : PyIpo] + @rtype: Dictionary [channel : PyIpo or None] @return: the Ipos for all the channels in the action - """ \ No newline at end of file + """