From 80e963122069bd543ef2c132a1c47145cf8915d0 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Tue, 15 Dec 2015 16:27:01 -0800 Subject: [PATCH] Use better signature match in deprecation message --- atom/common/api/lib/crash-reporter.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/atom/common/api/lib/crash-reporter.coffee b/atom/common/api/lib/crash-reporter.coffee index e1bfa15..544791b 100644 --- a/atom/common/api/lib/crash-reporter.coffee +++ b/atom/common/api/lib/crash-reporter.coffee @@ -28,11 +28,11 @@ class CrashReporter extra._version ?= app.getVersion() unless companyName? - deprecate.log('companyName is now a required option to CrashReporter::start') + deprecate.log('companyName is now a required option to crashReporter.start') return unless submitURL? - deprecate.log('submitURL is now a required option to CrashReporter::start') + deprecate.log('submitURL is now a required option to crashReporter.start') return start = => binding.start @productName, companyName, submitURL, autoSubmit, ignoreSystemCrashHandler, extra -- 2.7.4