summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDwight <dwight@10gen.com>2011-02-17 16:35:38 -0500
committerDwight <dwight@10gen.com>2011-02-17 16:35:49 -0500
commitabbff52dbda3f7679bb86ce54c8899e953507da4 (patch)
tree1980df0db5396a9da574cad6ad7d2f94912d2096
parentf7c8abd417edbad9331a90881b4e79374920db15 (diff)
downloadmongo-abbff52dbda3f7679bb86ce54c8899e953507da4.tar.gz
typos in comment
-rw-r--r--db/commands/mr.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/db/commands/mr.h b/db/commands/mr.h
index 2f3520230f2..f505a454c44 100644
--- a/db/commands/mr.h
+++ b/db/commands/mr.h
@@ -54,7 +54,7 @@ namespace mongo {
virtual void init( State * state ) = 0;
virtual BSONObj reduce( const BSONList& tuples ) = 0;
- /** this means its a fianl reduce, even if there is no finalizer */
+ /** this means its a final reduce, even if there is no finalizer */
virtual BSONObj finalReduce( const BSONList& tuples , Finalizer * finalizer ) = 0;
};
@@ -67,7 +67,7 @@ namespace mongo {
class JSFunction : boost::noncopyable {
public:
/**
- * @param type (map|reduce|finalzie)
+ * @param type (map|reduce|finalize)
*/
JSFunction( string type , const BSONElement& e );
virtual ~JSFunction() {}