Fix cspell flagged typos across the repo by triggering it on all files.

* Modify files by adding an extra space to trigger spell check on all.

* Modify newer files.

* Modify new files that got added.

* Modify all markdown files to trigger spell check on those.

* Fix spelling errors and update cspell to remove out-dated exceptions.

* Add back mypgrogram exception for the readme from azure-core.

* Revert test edits to markdown files.

* Revert test changes to source and header files.

* Remove modification to leftover source files.
This commit is contained in:
Ahson Khan 2023-02-06 11:30:20 -08:00 committed by GitHub
parent e8e0680cc3
commit 1abebf9661
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -32,7 +32,7 @@ TEST(ResponseT, extractAndGet)
// Can't get rawResponse again since it was moved
EXPECT_EQ(nullptr, response.RawResponse);
// This is fine, we can keep extracting the rawReponse, only that the second time the it would be
// This is fine, we can keep extracting the rawResponse, only that the second time the it would be
// a nullptr
EXPECT_NO_THROW(rawResponse = std::move(response.RawResponse));
EXPECT_EQ(nullptr, rawResponse);