summaryrefslogtreecommitdiffstats
path: root/staging_vespalib
diff options
context:
space:
mode:
Diffstat (limited to 'staging_vespalib')
-rw-r--r--staging_vespalib/src/vespa/vespalib/util/document_runnable.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/staging_vespalib/src/vespa/vespalib/util/document_runnable.cpp b/staging_vespalib/src/vespa/vespalib/util/document_runnable.cpp
index e9e5cbbf953..53fe3c8a1d0 100644
--- a/staging_vespalib/src/vespa/vespalib/util/document_runnable.cpp
+++ b/staging_vespalib/src/vespa/vespalib/util/document_runnable.cpp
@@ -26,7 +26,7 @@ bool Runnable::start(FastOS_ThreadPool& pool)
if (_state != NOT_RUNNING) return false;
_state = STARTING;
if (pool.NewThread(this) == nullptr) {
- throw vespalib::IllegalStateException("Faled starting a new thread", VESPA_STRLOC);
+ throw vespalib::IllegalStateException("Failed starting a new thread", VESPA_STRLOC);
}
return true;
}