diff options
author | pommicket <pommicket@gmail.com> | 2023-10-17 10:18:25 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2023-10-17 10:18:25 -0400 |
commit | 9842cb988343d255db17ed57d486ecc41fc0618e (patch) | |
tree | e228c5319c9b1f00f574c8ce505883411f3e4de6 /ide-rename-symbol.c | |
parent | 13c10a7002fd25efc22d3f07f25f9bf693f83e89 (diff) |
switch from ted->strings to cfg->strings
Diffstat (limited to 'ide-rename-symbol.c')
-rw-r--r-- | ide-rename-symbol.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ide-rename-symbol.c b/ide-rename-symbol.c index 53a6467..e5e30fb 100644 --- a/ide-rename-symbol.c +++ b/ide-rename-symbol.c @@ -128,7 +128,7 @@ void rename_symbol_process_lsp_response(Ted *ted, const LSPResponse *response) { arr_foreach_ptr(data->changes, const LSPWorkspaceChange, change) { if (change->type == LSP_CHANGE_DELETE && change->data.delete.recursive) { - ted_error(ted, "refusing to perform rename because it involves a recurisve deletion\n" + ted_error(ted, "refusing to perform rename because it involves a recursive deletion\n" "I'm too scared to go through with this"); goto cleanup; } |