diff options
author | murgatroid99 <michael.lumish@gmail.com> | 2015-01-16 14:22:14 -0800 |
---|---|---|
committer | murgatroid99 <michael.lumish@gmail.com> | 2015-01-16 14:22:14 -0800 |
commit | fd81e70443a4a185bcc14ab38f52a1aa8b1a2782 (patch) | |
tree | e68108fcc83a18a9c5b2d6b098259278a216a6a0 /src/node/examples | |
parent | 749985eb8df9bc96e289d9dc7ae205fa8491eabd (diff) |
Made method names more idiomatically cased for clients and servers
Diffstat (limited to 'src/node/examples')
-rw-r--r-- | src/node/examples/math_server.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/node/examples/math_server.js b/src/node/examples/math_server.js index 366513dc17..d649b4fd6d 100644 --- a/src/node/examples/math_server.js +++ b/src/node/examples/math_server.js @@ -119,10 +119,10 @@ function mathDivMany(stream) { var server = new Server({ 'math.Math' : { - Div: mathDiv, - Fib: mathFib, - Sum: mathSum, - DivMany: mathDivMany + div: mathDiv, + fib: mathFib, + sum: mathSum, + divMany: mathDivMany } }); |