nodejs: fix typo
diff --git a/lib/nodejs/test/client.js b/lib/nodejs/test/client.js
index 6d512b4..91365fc 100644
--- a/lib/nodejs/test/client.js
+++ b/lib/nodejs/test/client.js
@@ -34,8 +34,8 @@
 program
   .option('-p, --protocol <protocol>', 'Set thrift protocol (binary|json) [protocol]')
   .option('-t, --transport <transport>', 'Set thrift transport (buffered|framed) [transport]')
-  .option('--port <port>', 'Set thift server port number to connect', 9090)
-  .option('--host <host>', 'Set thift server host to connect', 'localhost')
+  .option('--port <port>', 'Set thrift server port number to connect', 9090)
+  .option('--host <host>', 'Set thrift server host to connect', 'localhost')
   .option('--ssl', 'use SSL transport')
   .option('--promise', 'test with promise style functions')
   .option('-t, --type <type>', 'Select server type (tcp|multiplex|http)', 'tcp')
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);