1
0
Fork 0

correct parameter name in error message

This commit is contained in:
Jan Steemann 2012-08-31 15:28:11 +02:00
parent 93b2a109e3
commit 3b54e55562
1 changed files with 1 additions and 1 deletions

View File

@ -2069,7 +2069,7 @@ static v8::Handle<v8::Value> JS_RunAhuacatl (v8::Arguments const& argv) {
const uint32_t argc = argv.Length();
if (argc < 1 || argc > 5) {
return scope.Close(v8::ThrowException(v8::String::New("usage: AHUACATL_RUN(<querystring>, <bindvalues>, <doCount>, <max>, <allowDirectReturn>)")));
return scope.Close(v8::ThrowException(v8::String::New("usage: AHUACATL_RUN(<querystring>, <bindvalues>, <doCount>, <batchSize>, <allowDirectReturn>)")));
}
TRI_vocbase_t* vocbase = GetContextVocBase();