Skip to content

Commit

Permalink
Fix function names, closes elastic#61
Browse files Browse the repository at this point in the history
  • Loading branch information
Rashid Khan committed Feb 3, 2016
1 parent fa9d44e commit c307844
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "timelion",
"version": "0.1.204",
"version": "0.1.205",
"dependencies": {
"body-parser": "^1.12.0",
"boom": "^2.8.0",
Expand Down
2 changes: 1 addition & 1 deletion series_functions/cusum.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var alter = require('../lib/alter.js');
var _ = require('lodash');
var Chainable = require('../lib/classes/chainable');
module.exports = new Chainable('derivative', {
module.exports = new Chainable('cusum', {
args: [
{
name: 'inputSeries',
Expand Down
2 changes: 1 addition & 1 deletion series_functions/min.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var reduce = require('../lib/reduce.js');

var Chainable = require('../lib/classes/chainable');
module.exports = new Chainable('max', {
module.exports = new Chainable('min', {
args: [
{
name: 'inputSeries',
Expand Down

0 comments on commit c307844

Please sign in to comment.