From 82120d02a8b2e641dde7e20ad1441b6aa3ca8d51 Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Tue, 22 Mar 2022 22:47:03 +0900 Subject: [PATCH] tools: fix typo in vbug.v (#13802) --- cmd/tools/vbug.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/tools/vbug.v b/cmd/tools/vbug.v index 4d91cb6e6..f5cd70845 100644 --- a/cmd/tools/vbug.v +++ b/cmd/tools/vbug.v @@ -118,7 +118,7 @@ fn main() { build_output := get_v_build_output(is_verbose, is_yes, file_path) // ask the user if he wants to submit even after an error if !is_yes && (vdoctor_output == '' || file_content == '' || build_output == '') { - confirm_or_exit('An error occured retrieving the information, do you want to continue?') + confirm_or_exit('An error occurred retrieving the information, do you want to continue?') } expected_result := readline.read_line('What did you expect to see? ') or { -- 2.30.2