diff --git a/src/OpenFOAM/db/functionObjectList/functionObjectList.H b/src/OpenFOAM/db/functionObjectList/functionObjectList.H
index bd71c1578c6c82359bd360db7c9f406add2e1215..78462b653bef92507b97496d6b552c26cbc89cc4 100644
--- a/src/OpenFOAM/db/functionObjectList/functionObjectList.H
+++ b/src/OpenFOAM/db/functionObjectList/functionObjectList.H
@@ -63,7 +63,7 @@ class functionObjectList
         //- Dictionary containing the list of function object specifications
         const dictionary& foDict_;
 
-        //- Switch for the execultion of the functionObjects
+        //- Switch for the execution of the functionObjects
         bool execution_;
 
 
@@ -84,7 +84,7 @@ public:
         //  The functionObject specifications are read from the controlDict
         functionObjectList
         (
-            const Time& t,
+            const Time&,
             const bool execution = true
         );
 
@@ -93,7 +93,7 @@ public:
         //  setting
         functionObjectList
         (
-            const Time& t,
+            const Time&,
             const dictionary& foDict,
             const bool execution = true
         );
diff --git a/src/postProcessing/systemCall/systemCall.H b/src/postProcessing/systemCall/systemCall.H
index 1d070cd6a9951135be34c940046bbc16fb7785cc..ed868100a2336220010bcdf8f5e6c33024d78855 100644
--- a/src/postProcessing/systemCall/systemCall.H
+++ b/src/postProcessing/systemCall/systemCall.H
@@ -60,8 +60,7 @@ protected:
 
     // Private data
 
-        //- Name of this set of forces,
-        //  Also used as the name of the probes directory.
+        //- Name of this set of system calls
         word name_;
 
         const objectRegistry& obr_;
diff --git a/tutorials/sonicTurbFoam/nacaAirfoil/system/controlDict b/tutorials/sonicTurbFoam/nacaAirfoil/system/controlDict
index 633ee17026fcb5e2f00b6de867e311d0713fc787..26f03536a79f079701dcebe28d3988ed5047ec07 100644
--- a/tutorials/sonicTurbFoam/nacaAirfoil/system/controlDict
+++ b/tutorials/sonicTurbFoam/nacaAirfoil/system/controlDict
@@ -14,7 +14,7 @@ FoamFile
 }
 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
 
-application sonicTurbFoam;
+application     sonicTurbFoam;
 
 startFrom       latestTime;
 
@@ -52,16 +52,16 @@ functions
     //    functionObjectLibs  ("libforces.so");
     //
     //    // Patches to sample
-    //    patches (WALL10);
+    //    patches     (WALL10);
     //    // Name of fields
-    //    pName   p;
-    //    Uname   U;
+    //    pName       p;
+    //    UName       U;
     //    // Dump to file
-    //    log true;
+    //    log         true;
     //    // Density
-    //    rhoInf  1;
+    //    rhoInf      1;
     //    // Centre of rotation
-    //    CofR    (0 0 0);
+    //    CofR        (0 0 0);
     //}
 
     forces
@@ -70,16 +70,16 @@ functions
         functionObjectLibs  ("libforces.so");
 
         // Patches to sample
-        patches (WALL10);
+        patches     (WALL10);
         // Name of fields
-        pName   p;
-        Uname   U;
+        pName       p;
+        UName       U;
         // Dump to file
-        log true;
+        log         true;
         // Density
-        rhoInf  1;
+        rhoInf      1;
         // Centre of rotation
-        CofR    (0 0 0);
+        CofR        (0 0 0);
 
         // Direction for lift
         liftDir     (-0.239733 0.970839 0);
@@ -91,13 +91,10 @@ functions
 
         magUInf     618.022;
 
-        lRef        1.0;      
+        lRef        1.0;
         Aref        1.0;
     }
 
-
 );
 
-
-
 // ************************************************************************* //