1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

tools: fix typo in vcomplete.v (#16851)

This commit is contained in:
Ikko Ashimine 2023-01-03 17:11:06 +09:00 committed by GitHub
parent 3625a74ec5
commit 24189e02b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -378,7 +378,7 @@ fn nearest_path_or_root(path string) string {
return fixed_path return fixed_path
} }
// auto_complete_request retuns a list of completions resolved from a full argument list. // auto_complete_request returns a list of completions resolved from a full argument list.
fn auto_complete_request(args []string) []string { fn auto_complete_request(args []string) []string {
// Using space will ensure a uniform input in cases where the shell // Using space will ensure a uniform input in cases where the shell
// returns the completion input as a string (['v','run'] vs. ['v run']). // returns the completion input as a string (['v','run'] vs. ['v run']).