Fix typos in driver_functions.py

I'm learning how driver functions work, and I found a couple of typos in the driver_functions.py template file. Here's a quick patch to fix them up.

Reviewed By: Blendify

Differential Revision: https://developer.blender.org/D10149
This commit is contained in:
Zev Eisenberg 2021-01-25 21:58:37 -05:00 committed by Aaron Carlisle
parent 77f73a9284
commit 0734b235d2
1 changed files with 4 additions and 4 deletions

View File

@ -1,8 +1,8 @@
# This script defines functions to be used directly in drivers expressions to
# extend the builtin set of python functions.
# This script defines functions to be used directly in driver expressions to
# extend the built-in set of python functions.
#
# This can be executed on manually or set to 'Register' to
# initialize thefunctions on file load.
# initialize the functions on file load.
# two sample functions
@ -30,6 +30,6 @@ def slow_value(value, fac, uuid):
import bpy
# Add variable defined in this script into the drivers namespace.
# Add functions defined in this script into the drivers namespace.
bpy.app.driver_namespace["invert"] = invert
bpy.app.driver_namespace["slow_value"] = slow_value