Skip to content
This repository has been archived by the owner on Dec 13, 2018. It is now read-only.

Commit

Permalink
Give OCaml threads a more professional name in the debugger.
Browse files Browse the repository at this point in the history
Summary: `"Please, this is OCaml"` is unnecessarily dismissive and unprofessional.  Rename it to "Thread #1."

Reviewed By: arxanas

Differential Revision: D9928275

fbshipit-source-id: 1752e548fc3e2029d87f8dce03dce47dbf536009
  • Loading branch information
Will Pitts (they/them) authored and facebook-github-bot committed Sep 19, 2018
1 parent 4c4171b commit 4b95a36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/atom-ide-debugger-ocaml/lib/OCamlDebugger.js
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ class OCamlDebugSession extends LoggingDebugSession {

threadsRequest(response: DebugProtocol.ThreadsResponse): void {
response.body = {
threads: [new Thread(THREAD_ID, 'Please, this is OCaml')],
threads: [new Thread(THREAD_ID, '')],
};
this.sendResponse(response);
}
Expand Down

0 comments on commit 4b95a36

Please sign in to comment.