fix comment reference

This commit is contained in:
Tyler Leonhardt 2021-10-27 16:55:13 -07:00
parent 5c0e664fd3
commit f961b92f0f
No known key found for this signature in database
GPG key ID: 1BC2B6244363E77E

View file

@ -422,7 +422,7 @@ export function createExtHostQuickOpen(mainContext: IMainContext, workspace: IEx
if (this._expectingHide) {
// if this._visible is true, it means that .show() was called between
// .hide() and .onDidHide. To ensure the correct number of onDidHide events
// are emitted, we set this._expectingOnDidHide to this value so that
// are emitted, we set this._expectingHide to this value so that
// the next time .hide() is called, we can emit the event again.
// Example:
// .show() -> .hide() -> .show() -> .hide() should emit 2 onDidHide events.