Skip to content

Commit

Permalink
Fix error grammar (node is a required arg...)
Browse files Browse the repository at this point in the history
  • Loading branch information
rgbkrk committed Dec 11, 2014
1 parent 158e85b commit 485d68e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/pkgcloud/rackspace/loadbalancer/client/nodes.js
Expand Up @@ -120,7 +120,7 @@ module.exports = {
loadBalancer instanceof lb.LoadBalancer ? loadBalancer.id : loadBalancer;

if (!(node instanceof lb.Node) && (typeof node !== 'object')) {
throw new Error('node is require argument and must be an object');
throw new Error('node is a required argument and must be an object');
}

self._request({
Expand Down

0 comments on commit 485d68e

Please sign in to comment.