diff options
| author | Matthias Melcher <github@matthiasm.com> | 2023-08-26 15:17:28 +0200 |
|---|---|---|
| committer | Matthias Melcher <github@matthiasm.com> | 2023-08-26 15:17:28 +0200 |
| commit | 94a75b012f3557687574df6533296c1a4ef51b3e (patch) | |
| tree | 5e2db2271774bda929f2d66739974fa8fbffe0cb /fluid/ExternalCodeEditor_UNIX.cxx | |
| parent | d9d474c59372a8b2b0829c400b5d0584129e3822 (diff) | |
Fixes a bunch of typos in comments.
Diffstat (limited to 'fluid/ExternalCodeEditor_UNIX.cxx')
| -rw-r--r-- | fluid/ExternalCodeEditor_UNIX.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fluid/ExternalCodeEditor_UNIX.cxx b/fluid/ExternalCodeEditor_UNIX.cxx index a669d8188..a04416034 100644 --- a/fluid/ExternalCodeEditor_UNIX.cxx +++ b/fluid/ExternalCodeEditor_UNIX.cxx @@ -45,7 +45,7 @@ static int is_dir(const char *dirname) { /** \class ExternalCodeEditor Support for an external C++ code editor for Fluid Code block. - This class can launch and quit a user defined program for editiing + This class can launch and quit a user defined program for editing code outside of Fluid. It observes changes in the external file and updates the Fluid widget to stay synchronized. @@ -561,7 +561,7 @@ void ExternalCodeEditor::alert_pipe_cb(FL_SOCKET s, void* d) { return; const char* cmd = self->command_line_.c_str(); if (cmd && *cmd) { - if (cmd[0] == '/') { // is this an absoluet filename? + if (cmd[0] == '/') { // is this an absolute filename? fl_alert("Can't launch external editor '%s':\n%s\n\ncmd: \"%s\"", fl_filename_name(cmd), strerror(self->last_error_), cmd); } else { |
