summaryrefslogtreecommitdiff
path: root/python/types.py
diff options
context:
space:
mode:
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: