Skip to content

Commit

Permalink
Small rename of leftovers from XML-RPC
Browse files Browse the repository at this point in the history
  • Loading branch information
MiniGod committed Jan 22, 2013
1 parent 7b4aa84 commit 2dab23b
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions lib/gbxremote.js
@@ -1,16 +1,14 @@
var Client = require('./client');

var xmlrpc = exports

/**
* Creates an XML-RPC client.
* Creates an GbxRemote client.
*
* @param {Number} port
* @param {String} host
* @param {Function} callback
* @return {Client}
* @see Client
*/
xmlrpc.createClient = function(port, host, callback) {
exports.createClient = function(port, host, callback) {
return new Client(port, host, callback);
}

0 comments on commit 2dab23b

Please sign in to comment.