diff --git a/src/plugins/projectexplorer/abstractprocessstep.h b/src/plugins/projectexplorer/abstractprocessstep.h
index 3aac602291cf4255d969b916e2b7d8f29f743f94..43e8f49015f73db6db56da42b92fbd06bc9f03f9 100644
--- a/src/plugins/projectexplorer/abstractprocessstep.h
+++ b/src/plugins/projectexplorer/abstractprocessstep.h
@@ -51,9 +51,9 @@ namespace ProjectExplorer {
   It should be used as a base class if your buildstep just needs to run a process.
 
   Usage:
-    Use setCommand(), setArguments(), setWorkingDirectory() to specify the process you want to run.
-    (You need to do that before calling AbstractProcess::init())
-    Inside YourBuildStep::init() call AbstractProcessStep::init()
+    Use setCommand(), setArguments(), setWorkingDirectory() to specify the process you want to run
+    (you need to do that before calling AbstractProcessStep::init()).
+    Inside YourBuildStep::init() call AbstractProcessStep::init().
     Inside YourBuildStep::run() call AbstractProcessStep::run(), which automatically starts the proces
     and by default adds the output on stdOut and stdErr to the OutputWindow.
     If you need to process the process output override stdOut() and/or stdErr.