From 42c774e1f635d93a6eefbc7c552c4b9c9041e968 Mon Sep 17 00:00:00 2001
From: prafullthorve <33866010+prafullthorve@users.noreply.github.com>
Date: Fri, 2 Oct 2020 00:13:02 +0530
Subject: [PATCH 1/2] Update README.md
Fixed the grammatical mistake,
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 9f40445..7f97215 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).
[![Build status](https://ci.appveyor.com/api/projects/status/738pm1kuuv7yw1t5?svg=true)](https://ci.appveyor.com/project/ivaylokenov/mywebapi) [![NuGet Version](http://img.shields.io/nuget/v/MyTested.WebApi.svg?style=flat)](https://www.nuget.org/packages/MyTested.WebApi/) [![Coverage Status](https://coveralls.io/repos/ivaylokenov/MyTested.WebApi/badge.svg?branch=master&service=github&v=2)](https://coveralls.io/github/ivaylokenov/MyTested.WebApi?branch=master) [![License](https://img.shields.io/badge/license-apache-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0)
From d6899d576e4d205eedd405842a102339e75fc01d Mon Sep 17 00:00:00 2001
From: prafullthorve <33866010+prafullthorve@users.noreply.github.com>
Date: Fri, 2 Oct 2020 00:15:00 +0530
Subject: [PATCH 2/2] Update AuthenticationScheme.cs
Fixed the grammatical mistake.
---
src/MyTested.WebApi/AuthenticationScheme.cs | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/src/MyTested.WebApi/AuthenticationScheme.cs b/src/MyTested.WebApi/AuthenticationScheme.cs
index 9e57909..0eeef80 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
}