diff --git a/README.md b/README.md
index 34593ff..431803b 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-Javascript-fastClass
+Javascript-FastClass
====================
A faster and easier way to define Javascript Prototypal Inheritance: `classes` and `mixins`
@@ -34,7 +34,7 @@ var Car = Vechicle.inheritWith(function(base, baseCtor)){//define the "derrived
base.draw.call(this);//optionally call the base class' draw method
}
}
-}, Engine);//optionally specify extra mixins whose prortotype members will be copied to Car.prototype
+}, Engine);//optionally specify extra mixins whose prototype members will be copied to Car.prototype
//Define the Engine mixin
function Engine() {
diff --git a/src/Package.tt b/src/Package.tt
index 8724ffd..5e3bdb2 100644
--- a/src/Package.tt
+++ b/src/Package.tt
@@ -11,7 +11,7 @@
A fast and lightest prototype inheritance when you can't use any complied library such as TypeScript or Google Closure
DotNetWise
- Better intellisense support for VS2013 (since VS2012 supports __proto__)
+ Better intellisense support for VS2013 (since VS2013 supports __proto__)
inheritWith creator now automatically shows members added on constructor and inherited constructors
Made use of intellisense.inheritXMLDoc so we automatically inherit XMLDoc from the first base class that has has one specified
Fixed inheritWith to accept an object when __proto__ is available