nodejs: fix typo
diff --git a/lib/nodejs/test/server.js b/lib/nodejs/test/server.js
index b33e91b..6e5cdfa 100644
--- a/lib/nodejs/test/server.js
+++ b/lib/nodejs/test/server.js
@@ -32,10 +32,10 @@
var ttypes = require('./gen-nodejs/ThriftTest_types');
program
- .option('-p, --protocol <protocol>', 'Set thift protocol (binary|json|compact)', 'binary')
- .option('-t, --transport <transport>', 'Set thift transport (buffered|framed)', 'buffered')
+ .option('-p, --protocol <protocol>', 'Set thrift protocol (binary|json|compact)', 'binary')
+ .option('-t, --transport <transport>', 'Set thrift transport (buffered|framed)', 'buffered')
.option('--ssl', 'use ssl transport')
- .option('--port <port>', 'Set thift server port', 9090)
+ .option('--port <port>', 'Set thrift server port', 9090)
.option('--promise', 'test with promise style functions')
.option('-t, --type <type>', 'Select server type (tcp|multiplex|http)', 'tcp')
.parse(process.argv);