aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/node/examples
diff options
context:
space:
mode:
authorGravatar murgatroid99 <michael.lumish@gmail.com>2015-01-16 14:22:14 -0800
committerGravatar murgatroid99 <michael.lumish@gmail.com>2015-01-16 14:22:14 -0800
commitfd81e70443a4a185bcc14ab38f52a1aa8b1a2782 (patch)
treee68108fcc83a18a9c5b2d6b098259278a216a6a0 /src/node/examples
parent749985eb8df9bc96e289d9dc7ae205fa8491eabd (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.js8
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
}
});