[Bf-docboard-svn] bf-manual: [9193] trunk/blender_docs/manual/advanced/scripting: Grammar and punctuation corrections in Scripting intro pages

Aaron Carlisle noreply at blender.org
Mon Apr 18 00:19:14 CEST 2022


Revision: 9193
          https://developer.blender.org/rBM9193
Author:   Blendify
Date:     2022-04-18 00:19:14 +0200 (Mon, 18 Apr 2022)
Log Message:
-----------
Grammar and punctuation corrections in Scripting intro pages

Author: @syscrusher

Differential Revision: https://developer.blender.org/D14669

Modified Paths:
--------------
    trunk/blender_docs/manual/advanced/scripting/introduction.rst
    trunk/blender_docs/manual/advanced/scripting/security.rst

Modified: trunk/blender_docs/manual/advanced/scripting/introduction.rst
===================================================================
--- trunk/blender_docs/manual/advanced/scripting/introduction.rst	2022-04-17 22:04:05 UTC (rev 9192)
+++ trunk/blender_docs/manual/advanced/scripting/introduction.rst	2022-04-17 22:19:14 UTC (rev 9193)
@@ -69,7 +69,7 @@
 Add-ons
 -------
 
-Add-ons are scripts that enable Blender to gain extra functionality,
+Add-ons are scripts that enable Blender to gain extra functionality;
 they can be enabled from the :doc:`Preferences </editors/preferences/addons>`.
 
 Outside of the Blender executable, there are hundreds of add-ons written by many people:
@@ -97,7 +97,7 @@
    These files are imported when starting Blender.
    They define most of Blender's UI, as well as some additional core operators.
 :Custom Scripts:
-   In contrast to add-ons they are typically intended for one-time execution via
+   In contrast to add-ons, they are typically intended for one-time execution via
    the :doc:`Text Editor </editors/text_editor>`.
 
 

Modified: trunk/blender_docs/manual/advanced/scripting/security.rst
===================================================================
--- trunk/blender_docs/manual/advanced/scripting/security.rst	2022-04-17 22:04:05 UTC (rev 9192)
+++ trunk/blender_docs/manual/advanced/scripting/security.rst	2022-04-17 22:19:14 UTC (rev 9193)
@@ -7,7 +7,7 @@
 such as rigging and automation. However, it poses a security risk since
 Python does not restrict what a script can do.
 Therefore, you should only run scripts from sources you know and trust.
-Automatic execution is disabled by default,
+Automatic execution is disabled by default;
 however, some blend-files need this to function properly.
 
 When a blend-file tries to execute a script and is not allowed, a dialog will appear.
@@ -49,11 +49,11 @@
 Blender provides a number of ways to control whether scripts
 from a blend-file are allowed to automatically execute.
 
-First of all, the File Browser has the option **Trusted Source** which you can use on
+First, the File Browser has the option **Trusted Source** which you can use on
 a case-by-case basis to control auto execution.
-However, you may forget to set this,
-or open a file without going through the File Browser --
-so you can change the default (described next).
+Since you may forget to set this,
+or may open a file without going through the File Browser,
+you can change the default (described next).
 
 
 Setting Defaults
@@ -62,7 +62,7 @@
 In the Preferences, there is the toggle to :ref:`Auto Run Python Scripts <prefs-auto-execution>`.
 This means the **Trusted Source** option in the File Browser will be enabled by default,
 and scripts can run when blend-files are loaded without using the File Browser.
-Once enabled you have the option to exclude certain directories,
+Once enabled you have the option to exclude certain directories;
 a typical configuration would be to trust all paths except for the download directory.
 
 .. figure:: /images/animation_drivers_troubleshooting_autorun-user-preference.png
@@ -73,7 +73,7 @@
 Command Line
 ------------
 
-You may want to perform batch rendering or some other task from the command line --
+You may want to perform batch rendering or some other task from the command line,
 running Blender without an interface.
 In this case, the Preferences are still used but you may want to override them:
 
@@ -84,7 +84,7 @@
 Example
 ^^^^^^^
 
-Rendering an animation in background mode, allowing drivers and other scripts to run:
+To render an animation in background mode, allowing drivers and other scripts to run:
 
 .. code-block:: sh
 



More information about the Bf-docboard-svn mailing list