Merge pull request #96 from fanofxiaofeng/master

three trivial changes
diff --git a/source/getting-started/debugging-struts.md b/source/getting-started/debugging-struts.md
index fdaa75b..95b9661 100644
--- a/source/getting-started/debugging-struts.md
+++ b/source/getting-started/debugging-struts.md
@@ -51,7 +51,7 @@
 ![debuging-struts-2.png](attachments/att17137673_debuging-struts-2.png)
 
 You may then click on one of the tabs (Results, Exception Mappings, Interceptors, Properties, Validators) to get more 
-information about how the Struts 2 framework is has configured that specific action.
+information about how the Struts 2 framework has configured that specific action.
 
 On the left side of the page is the config browser plugin menu. Clicking on constants will render a view that lists all 
 the Struts 2 constants and their properties for your application. Clicking on beans shows the beans Struts 2 is managing. 
diff --git a/source/getting-started/exception-handling.md b/source/getting-started/exception-handling.md
index 0e4272f..0d272d9 100644
--- a/source/getting-started/exception-handling.md
+++ b/source/getting-started/exception-handling.md
@@ -83,7 +83,7 @@
 
 Now when the application throws an uncaught exception, the Struts 2 framework will handle it and will also write an entry to the log that includes the stack trace. In the example above, I've set the level to log these exceptions to be ERROR.
 
-In the example applications, the logging is just to the Servlet container's console (see the `log4j.xml` file for the log settings).
+In the example applications, the logging is just to the Servlet container's console (see the `log4j2.xml` file for the log settings).
 
 ## Display Exception Information In Browser
 
diff --git a/source/getting-started/message-resource-files.md b/source/getting-started/message-resource-files.md
index 6b43fdc..ada5dd7 100644
--- a/source/getting-started/message-resource-files.md
+++ b/source/getting-started/message-resource-files.md
@@ -19,7 +19,7 @@
 ## Introduction
 
 In this tutorial we'll explore using Struts 2 message resource capabilities (also called resource bundles). Message 
-resources provide a simple way to put text in a view page that is the same through out your application, to create form 
+resources provide a simple way to put text in a view page that is the same throughout your application, to create form 
 field labels, and to change text to a specific language based on the user's locale (i18n).
 
 The [Struts 2 user mailing list](http://struts.apache.org/mail.html) is an excellent place to get help. If you are having