From 0a3148f67df8e287c1dabb81cd14d97b5bc0307e Mon Sep 17 00:00:00 2001 From: bmarchesini Date: Thu, 8 Nov 2018 11:20:54 +0100 Subject: [PATCH] [DOCS] remove trailing comma from code example (#2635) "," in excess for code examples for lines 78 and 133 --- docs/commandline/plugins.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/commandline/plugins.md b/docs/commandline/plugins.md index 40e2bf4d1..2d05a296d 100644 --- a/docs/commandline/plugins.md +++ b/docs/commandline/plugins.md @@ -75,7 +75,7 @@ Go to the config and configure it like this: simulationBalance: { // these are in the unit types configured in the watcher. asset: 1, - currency: 100, + currency: 100 }, // only want report after a sell? set to `false`. verbose: false, @@ -130,7 +130,7 @@ Mailer will automatically email you whenever Gekko has a new advice. // guarantee that your email address & password are safe! password: '', // Your GMail Password - if not supplied Gekko will prompt on startup. - tag: '[GEKKO] ', // Prefix all EMail subject lines with this + tag: '[GEKKO] ' // Prefix all EMail subject lines with this } - enabled indicates whether this is on or off.