summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
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);