From 63f1a736f4ebb415705744a3cc56ed3ecf7fb73c Mon Sep 17 00:00:00 2001 From: aviau <alexandre@alexandreviau.net> Date: Mon, 27 Jun 2016 19:33:52 +0200 Subject: [PATCH] fixed typos --- include/opendht/utils.h | 2 +- src/securedht.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/opendht/utils.h b/include/opendht/utils.h index a5f676c0..0b892fd1 100644 --- a/include/opendht/utils.h +++ b/include/opendht/utils.h @@ -61,7 +61,7 @@ void erase_if(std::map<Key, Item>& map, const Condition& condition) class DhtException : public std::runtime_error { public: DhtException(const std::string &str = "") : - std::runtime_error("DhtException occured: " + str) {} + std::runtime_error("DhtException occurred: " + str) {} }; diff --git a/src/securedht.cpp b/src/securedht.cpp index aafda7ee..2c37ad6e 100644 --- a/src/securedht.cpp +++ b/src/securedht.cpp @@ -99,7 +99,7 @@ SecureDht::secureType(ValueType&& type) return false; } else - DHT_LOG.WARN("Signature verification succeded"); + DHT_LOG.WARN("Signature verification succeeded"); } return type.storePolicy(id, v, nid, a, al); }; -- GitLab