summaryrefslogtreecommitdiff
path: root/includes/HttpServer.h
diff options
context:
space:
mode:
authorPixel <pixel@nobis-crew.org>2011-12-04 11:35:26 -0800
committerPixel <pixel@nobis-crew.org>2011-12-04 11:35:26 -0800
commitc39471409ed91e320b834979053e76738a58d6fc (patch)
tree3a6843c14ce1dc1685278cd2ea0623a16dcc13d1 /includes/HttpServer.h
parentd440c3f50a918a932293ad98bcec96eaa4683222 (diff)
Adding at least one TAssert into test-Threads, and fixing a typo.
Diffstat (limited to 'includes/HttpServer.h')
-rw-r--r--includes/HttpServer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/HttpServer.h b/includes/HttpServer.h
index 9885d50..3867252 100644
--- a/includes/HttpServer.h
+++ b/includes/HttpServer.h
@@ -21,7 +21,7 @@ class HttpServer {
class Action {
public:
Action(const Regex & regex, const Regex & host = Regexes::any) : m_regex(regex), m_host(host), m_refCount(0) { }
- ~Action() { AAssert(m_refCount == 0, "Don't delete an Action directl"); }
+ ~Action() { AAssert(m_refCount == 0, "Don't delete an Action directly"); }
struct ActionMatch {
Regex::Captures uri, host;
};