summaryrefslogtreecommitdiff
path: root/python/types.py
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2019-01-03 15:33:39 -0500
committerJordan Wiens <jordan@psifertex.com>2019-01-03 15:33:39 -0500
commit34b04f487e0dfcdc8766cb265e10dd3f58217f30 (patch)
tree6ccc49becfb5802bf982c9dc9978631283bc6c57 /python/types.py
parentac204fce33045803f27b438a2ffd3930d96fc52b (diff)
lots of spelling / typo fixes
Diffstat (limited to 'python/types.py')
-rw-r--r--python/types.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/python/types.py b/python/types.py
index e6913f93..ab31030b 100644
--- a/python/types.py
+++ b/python/types.py
@@ -1030,9 +1030,9 @@ def preprocess_source(source, filename=None, include_dirs=[]):
"""
``preprocess_source`` run the C preprocessor on the given source or source filename.
- :param str source: source to preprocess
- :param str filename: optional filename to preprocess
- :param list(str) include_dirs: list of string directorires to use as include directories.
+ :param str source: source to pre-process
+ :param str filename: optional filename to pre-process
+ :param list(str) include_dirs: list of string directories to use as include directories.
:return: returns a tuple of (preprocessed_source, error_string)
:rtype: tuple(str,str)
:Example: