summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMathias Stearn <mathias@10gen.com>2012-02-13 14:06:51 -0500
committerMathias Stearn <mathias@10gen.com>2012-02-13 18:47:05 -0500
commite3f2efe9f848108b49468ba4c5e831a322f0c723 (patch)
tree3ea259e3873e0313852611c7e84e29607fe72ca8 /src
parent2a1aa5317e538d4f13e9b60abe7e531a24b04228 (diff)
downloadmongo-e3f2efe9f848108b49468ba4c5e831a322f0c723.tar.gz
typo MINOR
Diffstat (limited to 'src')
-rw-r--r--src/mongo/util/concurrency/task.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/util/concurrency/task.h b/src/mongo/util/concurrency/task.h
index d7b45eeef24..0f053fd5c57 100644
--- a/src/mongo/util/concurrency/task.h
+++ b/src/mongo/util/concurrency/task.h
@@ -30,7 +30,7 @@ namespace mongo {
class Task : private BackgroundJob {
protected:
virtual void doWork() = 0; // implement the task here.
- virtual string name() const = 0; // name the threada
+ virtual string name() const = 0; // name the thread
public:
Task();