diff --git a/README.md b/README.md
index 9f404450..7f972156 100644
--- a/README.md
+++ b/README.md
@@ -69,7 +69,7 @@
## Project Description
-**MyTested.WebApi** is a unit testing library providing easy fluent interface to test the ASP.NET Web API 2 framework. It is testing framework agnostic, so you can combine it with a test runner of your choice (e.g. NUnit, xUnit, etc.). Inspired by [ChaiJS](https://github.com/chaijs/chai).
+**MyTested.WebApi** is a unit testing library provids easy fluent interface to test the ASP.NET Web API 2 framework. It is testing framework agnostic, so you can combine it with a test runner of your choice (e.g. NUnit, xUnit, etc.). Inspired by [ChaiJS](https://github.com/chaijs/chai).
[](https://ci.appveyor.com/project/ivaylokenov/mywebapi) [](https://www.nuget.org/packages/MyTested.WebApi/) [](https://coveralls.io/github/ivaylokenov/MyTested.WebApi?branch=master) [](http://www.apache.org/licenses/LICENSE-2.0)
diff --git a/src/MyTested.WebApi/AuthenticationScheme.cs b/src/MyTested.WebApi/AuthenticationScheme.cs
index 9e579091..0eeef802 100644
--- a/src/MyTested.WebApi/AuthenticationScheme.cs
+++ b/src/MyTested.WebApi/AuthenticationScheme.cs
@@ -5,32 +5,32 @@
namespace MyTested.WebApi
{
///
- /// Contains default authenticated header schemes.
+ /// Contains default authentication header schemes.
///
public enum AuthenticationScheme
{
///
- /// Anonymous authenticated header scheme.
+ /// Anonymous authentication header scheme.
///
Anonymous,
///
- /// Basic authenticated header scheme.
+ /// Basic authentication header scheme.
///
Basic,
///
- /// Digest authenticated header scheme.
+ /// Digest authentication header scheme.
///
Digest,
///
- /// NTLM authenticated header scheme.
+ /// NTLM authentication header scheme.
///
NTLM,
///
- /// Negotiate authenticated header scheme.
+ /// Negotiate authentication header scheme.
///
Negotiate
}