Merge pull request #221 from briansu2004/patch-3

Update preperable-interface.md
diff --git a/source/getting-started/http-session.md b/source/getting-started/http-session.md
index 021b824..9c9e62d 100644
--- a/source/getting-started/http-session.md
+++ b/source/getting-started/http-session.md
@@ -111,8 +111,7 @@
 the parameter name contains "session" we are telling the Struts 2 framework to ignore that parameter. This will prevent 
 a malicious user from trying to hack the HTTP session object.
 
-Instead of having each action that implements SessionAware also implement the ParameterNameAware interface you can tell t
-he params interceptor to exclude specific request attributes for all actions in a package. In struts.xml configure 
+Instead of having each action that implements SessionAware also implement the ParameterNameAware interface you can tell the params interceptor to exclude specific request attributes for all actions in a package. In struts.xml configure 
 the `struts-default` set of interceptors as follows:
 
 **struts.xml configure params interceptor**
diff --git a/source/getting-started/themes.md b/source/getting-started/themes.md
index 6f97385..0a18d2a 100644
--- a/source/getting-started/themes.md
+++ b/source/getting-started/themes.md
@@ -54,7 +54,7 @@
 
 Notice how the HTML generated uses table tags to control the layout of the label and select HTML. There is also a class, 
 `tdLabel`, applied to the table column where the label tag is rendered. Since no theme was specified for the Struts 2 
-select tag the default `xhmtl` theme was used.
+select tag the default `xhtml` theme was used.
 
 ## Specifying The Theme Struts 2 Should Use