diff options
author | Mathias Stearn <mathias@10gen.com> | 2012-02-13 14:06:51 -0500 |
---|---|---|
committer | Mathias Stearn <mathias@10gen.com> | 2012-02-13 18:47:05 -0500 |
commit | e3f2efe9f848108b49468ba4c5e831a322f0c723 (patch) | |
tree | 3ea259e3873e0313852611c7e84e29607fe72ca8 /src | |
parent | 2a1aa5317e538d4f13e9b60abe7e531a24b04228 (diff) | |
download | mongo-e3f2efe9f848108b49468ba4c5e831a322f0c723.tar.gz |
typo MINOR
Diffstat (limited to 'src')
-rw-r--r-- | src/mongo/util/concurrency/task.h | 2 |
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(); |