diff --git a/README.md b/README.md
index 6c557bb..a9f3323 100644
--- a/README.md
+++ b/README.md
@@ -4,13 +4,17 @@ A semantic version library for .Net
This class library implements the SemVersion class, that
complies to v2.0.0-rc.1 of the spec from http://semver.org.
-Parsing
---------
+**Installation**
+
+With the nuget console:
+
+ Package-Install semver
+
+**Parsing**
var version = SemVersion.Parse("1.1.0-rc.1+nightly.2345");
-Comparing
----------
+**Comparing**
if(version >= "1.0")
Console.WriteLine("released version {0}!", version)
diff --git a/Semver/Semver.nuspec b/Semver/Semver.nuspec
index 246480a..d468a2c 100644
--- a/Semver/Semver.nuspec
+++ b/Semver/Semver.nuspec
@@ -9,7 +9,7 @@
http://max.mit-license.org/
false
A semver implementation in .Net based on the v2.0.0-rc.1 of the spec found at http://semver.org/.
-
+ Github repository: https://github.com/maxhauser/semver.
Copyright 2013
semver semantic version