From ce6a46ee594b7aef915c5e885e658efd30ff3763 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Tue, 24 Jan 2017 14:08:10 -0800 Subject: [PATCH] Use template strings --- docs/api/crash-reporter.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/api/crash-reporter.md b/docs/api/crash-reporter.md index c898592..3e93de4 100644 --- a/docs/api/crash-reporter.md +++ b/docs/api/crash-reporter.md @@ -62,9 +62,9 @@ and `crashesDirectory` with appropriate values. ```js const args = [ - '--reporter-url=' + submitURL, - '--application-name=' + productName, - '--crashes-directory=' + crashesDirectory + `--reporter-url=${submitURL}`, + `--application-name=${productName}`, + `--crashes-directory=${crashesDirectory}` ] const env = { ELECTRON_INTERNAL_CRASH_SERVICE: 1 -- 2.7.4