Added minor fix based on #16
diff --git a/java-cryptography-guide.md.vtl b/java-cryptography-guide.md.vtl
index 0ad4ab4..e59cd7b 100644
--- a/java-cryptography-guide.md.vtl
+++ b/java-cryptography-guide.md.vtl
@@ -16,7 +16,7 @@
 
 Cryptography is the protecting of information from undesired access by hiding it or converting it into nonsense so that no one can read it.
 
-Shiro is a major part of Shiro because we wanted to provide you with simplicity on what is typically a very complex topic. For example, the Java Cryptophay Environments (JCE) already handles cryptography in a Java environment but is very difficult to learn and use. So we grabbed the concepts made available by the JCE API and make them available to us mortals. In addition, all of the calls in the JCE are procedural which doesn't fit in Java's Object Oriented paradigm. So in Shiro, our cryptography features are all object oriented.
+Shiro is a major part of Shiro because we wanted to provide you with simplicity on what is typically a very complex topic. For example, the Java Cryptography Extension (JCE) already handles cryptography in a Java environment but is very difficult to learn and use. So we grabbed the concepts made available by the JCE API and make them available to us mortals. In addition, all of the calls in the JCE are procedural which doesn't fit in Java's Object Oriented paradigm. So in Shiro, our cryptography features are all object oriented.
 
 <a name="JavaCryptographyGuide-ElementsofCryptography"></a>
 Elements of Cryptography