File: lintian_spelling

package info (click to toggle)
python-apptools 4.4.0-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,652 kB
  • sloc: python: 16,657; makefile: 77
file content (35 lines) | stat: -rw-r--r-- 1,768 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
Description: Fixing some spelling in documentation
 Addresses lintian tag spelling-error-in-manpage
Author: Stewart Ferguson <stew@ferg.aero>
Forwarded: https://github.com/enthought/apptools/pull/87
Last-Update: 2019-02-03
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/docs/source/appscripting/Introduction.rst
+++ b/docs/source/appscripting/Introduction.rst
@@ -58,12 +58,12 @@ The following are the concepts supported
   possible for a recording to be run directly by the Python interpreter and
   independently of the application that made the recording.  Otherwise the
   application must run the script and first create any scriptable objects
-  refered to in the script.
+  referred to in the script.
 
 - Binding
 
   A script runs in a namespace which is, by default, empty.  If the scriptable
-  objects refered to in a script are not created by the script (because their
+  objects referred to in a script are not created by the script (because their
   type's ``__init__()`` method isn't scriptable) then they must be created by
   the application and added to the namespace.  Adding an object to the
   namespace is called binding.
--- a/docs/source/scripting/introduction.rst
+++ b/docs/source/scripting/introduction.rst
@@ -179,7 +179,7 @@ Here are a few advanced use cases.
    user to save the script.
 
  - Sometimes it is not enough to just record trait changes, one may want
-   to pass an arbitrary string or command when recording is occuring.
+   to pass an arbitrary string or command when recording is occurring.
    To allow for this, if one defines a ``recorder`` trait on the object,
    it is set to the current recorder.  One can then use this recorder to
    do whatever one wants.  This is very convenient.