How to remove several documents with one querry

I am looking for a way to remove several documents with one querry.
Something like this:

Comments.remove({user: this._id}, {multi: true}); // removes all comments

But {multi: true} seems to only work with update.

Nevermind.
There was something else wrong with my code.
Comments.remove({user: this._id}) works just fine.