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

Commit 8549ee7

Browse files
committed
docs: clean up TODOs
1 parent da33526 commit 8549ee7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/extension/api.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ export interface Windows extends Observable<Window[]> {
147147
/**
148148
* Display a prompt and request text input from the user.
149149
*
150-
* @todo TODO!(sqs): always shows on the active window if any; how to pass this as a param?
150+
* @todo TODO: always shows on the active window if any; should pass window as a param?
151151
*
152152
* @param message The message to show.
153153
* @param defaultValue The default value for the user input, or undefined for no default.

src/extension/features/commands.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import { Commands, CXP } from '../api'
1818
* @return The {@link CXP#commands} value.
1919
*/
2020
export function createExtCommands(ext: Pick<CXP<any>, 'rawConnection'>): Commands {
21-
// TODO!(sqs): move CommandRegistry to somewhere general since it's now used by the controller AND extension
21+
// TODO: move CommandRegistry to somewhere general since it's now used by the controller AND extension
2222
const commandRegistry = new CommandRegistry()
2323
ext.rawConnection.onRequest(ExecuteCommandRequest.type, params => commandRegistry.executeCommand(params))
2424
return {

0 commit comments

Comments
 (0)