summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGunnar Mills <gmills@us.ibm.com>2020-07-08 22:46:53 +0300
committerGunnar Mills <gmills@us.ibm.com>2020-07-10 19:48:10 +0300
commitcaa3ce3cd0c310185034ba25c0f8464909fa54cb (patch)
treeee93e043240de8cf6451e76d21283a0af55c5322 /src
parent4e0453b11cf4780b06c73643ce31e6bc1809b7cf (diff)
downloadbmcweb-caa3ce3cd0c310185034ba25c0f8464909fa54cb.tar.xz
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 <gmills@us.ibm.com> Change-Id: I214fe102550295578cfdf0fc58305897d261ce55
Diffstat (limited to 'src')
-rw-r--r--src/base64.cpp2
-rw-r--r--src/kvm_websocket_test.cpp2
2 files changed, 2 insertions, 2 deletions
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);