diff --git a/Doc/Sd1/errorHandling.xml b/Doc/Sd1/errorHandling.xml
index 358573fa79036a656d633218e8f2e1bff99a32e9..35f5026e2765325c1e006e83345609a777cd494f 100644
--- a/Doc/Sd1/errorHandling.xml
+++ b/Doc/Sd1/errorHandling.xml
@@ -443,7 +443,7 @@ static public String convert(final String input) {
    case "one": return "first";
    case "two": return "second";
    case "three": return "third";
-  defaut: return "no idea for " + input;
+  default: return "no idea for " + input;
   }
 }</programlisting>
     </figure>
@@ -457,7 +457,7 @@ static public String convert(final String input) {
         </listitem>
 
         <listitem>
-          <para>Solution: Throw an exception, steps:</para>
+          <para>Solution: Throw an exception. Steps:</para>
 
           <orderedlist>
             <listitem>