From 7120e8aff2e925fd4b5d15a080011480ec0ab5a6 Mon Sep 17 00:00:00 2001 From: eidheim Date: Wed, 7 Sep 2016 20:56:23 +0200 Subject: [PATCH] Minor typo fix --- http_examples.cpp | 2 +- https_examples.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/http_examples.cpp b/http_examples.cpp index a0a01fd..8ab2444 100644 --- a/http_examples.cpp +++ b/http_examples.cpp @@ -134,7 +134,7 @@ int main() { default_resource_send(server, response, ifs, buffer); } else - throw invalid_argument("coult not read file"); + throw invalid_argument("could not read file"); } catch(const exception &e) { string content="Could not open path "+request->path+": "+e.what(); diff --git a/https_examples.cpp b/https_examples.cpp index 8caa45d..db73ebd 100644 --- a/https_examples.cpp +++ b/https_examples.cpp @@ -134,7 +134,7 @@ int main() { default_resource_send(server, response, ifs, buffer); } else - throw invalid_argument("coult not read file"); + throw invalid_argument("could not read file"); } catch(const exception &e) { string content="Could not open path "+request->path+": "+e.what();