Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorJoseph Gilbert <ascotan@gmail.com>2004-05-15 07:02:11 +0400
committerJoseph Gilbert <ascotan@gmail.com>2004-05-15 07:02:11 +0400
commitd00ad69b06b48807e82c9500b9afc0f9496a7e36 (patch)
tree92229e6c18fe4b07b2426b1bd0c9bf9909e1a9af /source
parent95c546bd9d9a644edd3dd3f5ca5fb7f6fd51f1de (diff)
- spelling error and example fix
Diffstat (limited to 'source')
-rw-r--r--source/blender/python/api2_2x/doc/NLA.py4
-rw-r--r--source/blender/python/api2_2x/doc/Render.py4
2 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/python/api2_2x/doc/NLA.py b/source/blender/python/api2_2x/doc/NLA.py
index f13e36a18dd..f668ae4e068 100644
--- a/source/blender/python/api2_2x/doc/NLA.py
+++ b/source/blender/python/api2_2x/doc/NLA.py
@@ -124,9 +124,9 @@ class Action:
@param channel: The name of a channel in this action to be removed
"""
- def getAllChannelIpo():
+ def getAllChannelIpos():
"""
Get the all the Ipos for this action
- @rtype: PyList of PyIpos
+ @rtype: PyDict [channel : PyIpo]
@return: the Ipos for all the channels in the action
""" \ No newline at end of file
diff --git a/source/blender/python/api2_2x/doc/Render.py b/source/blender/python/api2_2x/doc/Render.py
index 8496c38140e..e113f1b9140 100644
--- a/source/blender/python/api2_2x/doc/Render.py
+++ b/source/blender/python/api2_2x/doc/Render.py
@@ -10,8 +10,8 @@ This module provides access to B{Scene Rendering Contexts} in Blender.
Example::
import Blender
- from Blender import Scene
- from Blender import Scene.Render
+ from Blender import *
+ from Blender.Scene import Render
scn = Scene.GetCurrent()
context = scn.getRenderingContext()