From 1abebf96615ad4c553d97b011b56880db515a566 Mon Sep 17 00:00:00 2001 From: Ahson Khan Date: Mon, 6 Feb 2023 11:30:20 -0800 Subject: [PATCH] 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. --- sdk/core/azure-core/test/ut/response_t_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/core/azure-core/test/ut/response_t_test.cpp b/sdk/core/azure-core/test/ut/response_t_test.cpp index 629caefdb..ee7f89595 100644 --- a/sdk/core/azure-core/test/ut/response_t_test.cpp +++ b/sdk/core/azure-core/test/ut/response_t_test.cpp @@ -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);