Skip to content

Commit 8e67f37

Browse files
codymikolaskmike
authored andcommitted
Corrected some typos.
1 parent fab03c1 commit 8e67f37

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

core/budfox/tradeBatcher.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Small wrapper that only propogates new trades.
2+
// Small wrapper that only propagates new trades.
33
//
44
// Expects trade batches to be written like:
55
// [

core/markets/leech.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// a leech market is "semi-realtime" and pulls out candles of a
2-
// database (which is expected to be updated reguraly, like with a
3-
// realtime market running in parralel).
2+
// database (which is expected to be updated regularly, like with a
3+
// realtime market running in parallel).
44

55
const _ = require('lodash');
66
const moment = require('moment');

core/talib.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
var semver = require("semver");
22
var _ = require('lodash');
33

4-
// validate that talib is installed, if not we'll throw an excepion which will
4+
// validate that talib is installed, if not we'll throw an exception which will
55
// prevent further loading or out outside this module
66
try {
77
var talib = require("talib");

core/tulind.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
var semver = require("semver");
22
var _ = require('lodash');
33

4-
// validate that talib is installed, if not we'll throw an excepion which will
4+
// validate that talib is installed, if not we'll throw an exception which will
55
// prevent further loading or out outside this module
66
try {
77
var tulind = require("tulind");

plugins/postgresql/reader.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ var Reader = function() {
1313
this.db = handle;
1414
}
1515

16-
// returns the furtherst point (up to `from`) in time we have valid data from
16+
// returns the furthest point (up to `from`) in time we have valid data from
1717
Reader.prototype.mostRecentWindow = function(from, to, next) {
1818
to = to.unix();
1919
from = from.unix();

strategies/indicators/LRC.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Lineair regression curve
2+
* Linear regression curve
33
*/
44
var log = require('../../core/log');
55

0 commit comments

Comments
 (0)