diff options
author | Tristan Gingold <tgingold@free.fr> | 2021-07-22 18:30:20 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2021-07-22 18:30:20 +0200 |
commit | 9399661b8ea5a22eedad2391927802271abc45a1 (patch) | |
tree | b5a56a1f000ff09370cf9677f771006a9b12a866 /pyGHDL/lsp | |
parent | fc9292fc5c10b5199f176da2fcec7d62df4c88d4 (diff) | |
download | ghdl-9399661b8ea5a22eedad2391927802271abc45a1.tar.gz ghdl-9399661b8ea5a22eedad2391927802271abc45a1.tar.bz2 ghdl-9399661b8ea5a22eedad2391927802271abc45a1.zip |
lsp/document.py: fix a typo in a call to _Replace_Text
Diffstat (limited to 'pyGHDL/lsp')
-rw-r--r-- | pyGHDL/lsp/document.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyGHDL/lsp/document.py b/pyGHDL/lsp/document.py index 15a7ff0cd..00cb65955 100644 --- a/pyGHDL/lsp/document.py +++ b/pyGHDL/lsp/document.py @@ -108,7 +108,7 @@ class Document(object): # Failed to replace text. # Increase size self.__extend_source_buffer(len(text_bytes)) - status = files_map_editor.Replace_Text( + status = files_map_editor._Replace_Text( self._fe, start_line + 1, start_col, |