Skip to content
Snippets Groups Projects
Commit 05921a1c authored by Goik Martin's avatar Goik Martin
Browse files

defaut --> default

parent f819ee19
No related branches found
No related tags found
No related merge requests found
...@@ -443,7 +443,7 @@ static public String convert(final String input) { ...@@ -443,7 +443,7 @@ static public String convert(final String input) {
case "one": return "first"; case "one": return "first";
case "two": return "second"; case "two": return "second";
case "three": return "third"; case "three": return "third";
defaut: return "no idea for " + input; default: return "no idea for " + input;
} }
}</programlisting> }</programlisting>
</figure> </figure>
...@@ -457,7 +457,7 @@ static public String convert(final String input) { ...@@ -457,7 +457,7 @@ static public String convert(final String input) {
</listitem> </listitem>
<listitem> <listitem>
<para>Solution: Throw an exception, steps:</para> <para>Solution: Throw an exception. Steps:</para>
<orderedlist> <orderedlist>
<listitem> <listitem>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment