0
0
mirror of https://github.com/vim/vim.git synced 2025-07-26 11:04:33 -04:00

patch 9.0.1808: termdebug: Typo in termdebug test

Problem:  termdebug: Typo in termdebug test
Solution: fix the typos

Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
Christian Brabandt 2023-08-27 19:59:28 +02:00
parent 9b73902dbe
commit f2534434c9
No known key found for this signature in database
GPG Key ID: F3F92DA383FDDE09

View File

@ -9,12 +9,12 @@ CheckExecutable gcc
let g:GDB = exepath('gdb')
if g:GDB->empty()
throw 'Skpped: gdb is not found in $PATH'
throw 'Skipped: gdb is not found in $PATH'
endif
let g:GCC = exepath('gcc')
if g:GCC->empty()
throw 'Skpped: gcc is not found in $PATH'
throw 'Skipped: gcc is not found in $PATH'
endif
packadd termdebug