diff options
author | Ricardo Catalinas Jiménez <[email protected]> | 2011-09-25 01:21:39 +0200 |
---|---|---|
committer | Henrik Nord <[email protected]> | 2011-11-09 14:49:14 +0100 |
commit | 84d0304579064239282d2bb57a7c2b5ce5dc9868 (patch) | |
tree | 00e32896bd0f614d3c74057f37766a85b5b2ca25 /lib/debugger/src/dbg_ui_interpret.erl | |
parent | d90ccb6a63f7ae63e1d4c89d686694a06e56c025 (diff) | |
download | otp-84d0304579064239282d2bb57a7c2b5ce5dc9868.tar.gz otp-84d0304579064239282d2bb57a7c2b5ce5dc9868.tar.bz2 otp-84d0304579064239282d2bb57a7c2b5ce5dc9868.zip |
Fix "OK" spelling in debugger messages and variables
Simple code refactor in the debugger: renames all the occurrences of
"Ok" to "OK" in the code, variable names and strings. This improves the
consistency of the code and follows the GTK UI where "OK" is always
used.
Diffstat (limited to 'lib/debugger/src/dbg_ui_interpret.erl')
-rw-r--r-- | lib/debugger/src/dbg_ui_interpret.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/debugger/src/dbg_ui_interpret.erl b/lib/debugger/src/dbg_ui_interpret.erl index 952e73b537..079eaeb634 100644 --- a/lib/debugger/src/dbg_ui_interpret.erl +++ b/lib/debugger/src/dbg_ui_interpret.erl @@ -145,7 +145,7 @@ interpret_all(State, Dir, [File0|Files]) -> Window = dbg_ui_filedialog_win:get_window(State#state.win), Error = format_error(int:interpretable(File)), Msg = ["Error when interpreting:", File, Error, - "Ok to continue?"], + "OK to continue?"], case tool_utils:confirm(Window, Msg) of ok -> interpret_all(State, Dir, Files); cancel -> true |