From caa3ce3cd0c310185034ba25c0f8464909fa54cb Mon Sep 17 00:00:00 2001 From: Gunnar Mills Date: Wed, 8 Jul 2020 14:46:53 -0500 Subject: Codespell spelling fixes These spelling errors were found using https://github.com/codespell-project/codespell Tested: Built and ran against validator. Signed-off-by: Gunnar Mills Change-Id: I214fe102550295578cfdf0fc58305897d261ce55 --- src/base64.cpp | 2 +- src/kvm_websocket_test.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/base64.cpp b/src/base64.cpp index 4b5cc264b7..e32090abda 100644 --- a/src/base64.cpp +++ b/src/base64.cpp @@ -99,7 +99,7 @@ bool base64_decode(const std::string& input, std::string& output) output.reserve(((input_length + 2) / 3) * 4); // for each 4-bytes sequence from the input, extract 4 6-bits sequences by - // droping first two bits + // dropping first two bits // and regenerate into 3 8-bits sequences for (size_t i = 0; i < input_length; i++) diff --git a/src/kvm_websocket_test.cpp b/src/kvm_websocket_test.cpp index 07ca5151fd..4016329486 100644 --- a/src/kvm_websocket_test.cpp +++ b/src/kvm_websocket_test.cpp @@ -16,7 +16,7 @@ using namespace testing; // Tests static files are loaded correctly TEST(Kvm, BasicRfb) { - return; // TODO(ed) Make hte code below work again + return; // TODO(ed) Make the code below work again SimpleApp app; crow::kvm::requestRoutes(app); -- cgit v1.2.3