Skip to content
This repository was archived by the owner on Sep 6, 2021. It is now read-only.

Commit 53f1cb4

Browse files
committed
Merge pull request #9081 from busykai/kai/nit-function-name
Nit: change case in function name.
2 parents b526784 + 147d69a commit 53f1cb4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/editor/EditorManager.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ define(function (require, exports, module) {
177177
* @param {!jQuery.Event} e - event
178178
* @param {?File} file - current file (can be null)
179179
*/
180-
function _handlecurrentFileChange(e, file) {
180+
function _handleCurrentFileChange(e, file) {
181181
var doc = file && DocumentManager.getOpenDocumentForPath(file.fullPath);
182182
_notifyActiveEditorChanged(doc && doc._masterEditor);
183183
}
@@ -784,7 +784,7 @@ define(function (require, exports, module) {
784784
// Create PerfUtils measurement
785785
PerfUtils.createPerfMeasurement("JUMP_TO_DEFINITION", "Jump-To-Definiiton");
786786

787-
$(MainViewManager).on("currentFileChange", _handlecurrentFileChange);
787+
$(MainViewManager).on("currentFileChange", _handleCurrentFileChange);
788788
$(MainViewManager).on("workingSetRemove workingSetRemoveList", _handleRemoveFromPaneView);
789789

790790

0 commit comments

Comments
 (0)