From 02258a9994030579af31b8e05f0e8a4f080da510 Mon Sep 17 00:00:00 2001 From: Wliu <50Wliu@users.noreply.github.com> Date: Tue, 6 Jun 2017 23:34:47 -0400 Subject: [PATCH] :memo: Fix get{Left|Right|Bottom}Dock links --- src/dock.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dock.js b/src/dock.js index 0023c52e5..68a34464b 100644 --- a/src/dock.js +++ b/src/dock.js @@ -16,8 +16,8 @@ const CURSOR_OVERLAY_VISIBLE_CLASS = 'atom-dock-cursor-overlay-visible' // Extended: A container at the edges of the editor window capable of holding items. // You should not create a Dock directly. Instead, access one of the three docks of the workspace -// via {::getLeftDock}, {::getRightDock}, and {::getBottomDock} or add an item to a dock via -// {Workspace::open}. +// via {Workspace::getLeftDock}, {Workspace::getRightDock}, and {Workspace::getBottomDock} +// or add an item to a dock via {Workspace::open}. module.exports = class Dock { constructor (params) { this.handleResizeHandleDragStart = this.handleResizeHandleDragStart.bind(this)