From 495caa73164d7388c9bfee4fbc11386bb9f3fd99 Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Wed, 4 Feb 2015 13:12:41 -0800 Subject: [PATCH] :art: Rename DEFAULT_SOCKET_PATH -> DefaultSocketPath --- src/browser/atom-application.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/browser/atom-application.coffee b/src/browser/atom-application.coffee index de5fda234..aecec226e 100644 --- a/src/browser/atom-application.coffee +++ b/src/browser/atom-application.coffee @@ -14,7 +14,7 @@ url = require 'url' {EventEmitter} = require 'events' _ = require 'underscore-plus' -DEFAULT_SOCKET_PATH = +DefaultSocketPath = if process.platform is 'win32' '\\\\.\\pipe\\atom-sock' else @@ -31,7 +31,7 @@ class AtomApplication # Public: The entry point into the Atom application. @open: (options) -> - options.socketPath ?= DEFAULT_SOCKET_PATH + options.socketPath ?= DefaultSocketPath createAtomApplication = -> new AtomApplication(options)