diff --git a/Modules/Python/documentation/mitkPython.dox b/Modules/Python/documentation/mitkPython.dox
index 8e290369fc..52f27b2c52 100644
--- a/Modules/Python/documentation/mitkPython.dox
+++ b/Modules/Python/documentation/mitkPython.dox
@@ -1,49 +1,49 @@
/**
\page mitkPython_Overview The MITK Python Module
\section sec1 Brief description
The MITK Python Module provides a service class for interactively run python code (passed as C++ strings) and
evaluate the results. Furthermore the service class offers means to convert an MITK Image to an ITK/OpenCV image in their wrapped python environment.
Thus, one can process MITK images with Python Code from the OpenCV and ITK wrapping system.
Furthermore one can convert an mitk::Surface to a vtkPolyData in its Python environment.
Under the hood, the MITK build system takes care that the wrapping build process for SimpleITK/VTK/OpenCV is correctly initiated and all paths are correctly set within MITK code.
To use the features of the different toolkits make sure they are enabled during the superbuild process.
\section sec2 Build Instructions
The following build options are available:
- MITK_USE_Python
- MITK_USE_SYSTEM_PYTHON
\subsection ssec1 MITK_USE_Python
MITK_USE_Python enables the python wrapping in MITK. When the option is activated
the build of the additional dependency SimpleITK is also enabled. The default behaviour is to download and build
-Python 2.7.3 with numpy and em,bedd it into MITK.To use an own custom runtime see MITK_USE_SYSTEM_PYTHON.
+Python 2.7.3 with numpy and embed it into MITK.To use an own custom runtime see MITK_USE_SYSTEM_PYTHON.
\subsection ssec2 MITK_USE_SYSTEM_PYTHON
-If MITK_USE_SYSTEM_PYTHON is activated the python runtime from the system is used.
+This option is deactivated by default. If MITK_USE_SYSTEM_PYTHON is activated the python runtime from the system is used.
The user can also specify it's own runtime by modifing the variables added by the
-FindPythonLib.cmake script. Note: A Python runtime with numpy is needed for the MITK Python wrapping.
+FindPythonLib.cmake script. Note: A Python runtime with numpy is needed to use the MITK Python wrapping.
\section sec3 Suported Data Types
The following data types in MITK are supported in the MITK Python Wrapping:
\subsection ssec4 Image
Mitk Images can be transferred to python. The images are copied in-memory and
transferred as a numpy array to Python and vice versa. The MITK python wrapping creates a SimpleITK image
using the numpy array with the properties of the MITK Image. Two dimensional images
can also be transferred as an OpenCV image to python.
\subsection ssec5 Surface
Surfaces within mitk can be transferred as a vtkPolyData Object to Python.
The surfaces are fully memory mapped. When changing a python wrapped surface
-in python, the original object is also modified on the C++ side of MITK.
+the original object is also modified on the C++ side of MITK.
*/