diff options
author | Trevor Woerner <trevor.woerner@linaro.org> | 2013-11-11 13:51:30 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-11-12 17:01:37 +0000 |
commit | b9d81043df6fee711a1f91ad236cbd4553275411 (patch) | |
tree | c77abdc6d6bb6323aaf8e19c7b28d5ed1acc8e15 | |
parent | 520f95364aff82bac6d6fbf2c013a6d60c1d4b51 (diff) | |
download | poky-b9d81043df6fee711a1f91ad236cbd4553275411.tar.gz |
bitbake: newbb.vim: fix spelling
(Bitbake rev: 0bd1a3026a26c2c01abd31e265668541f6201bae)
Signed-off-by: Trevor Woerner <trevor.woerner@linaro.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-x | bitbake/contrib/vim/plugin/newbb.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/contrib/vim/plugin/newbb.vim b/bitbake/contrib/vim/plugin/newbb.vim index 053ed710ac..3019c855c0 100755 --- a/bitbake/contrib/vim/plugin/newbb.vim +++ b/bitbake/contrib/vim/plugin/newbb.vim | |||
@@ -17,7 +17,7 @@ endif | |||
17 | fun! <SID>GetUserName() | 17 | fun! <SID>GetUserName() |
18 | let l:user_name = system("git config --get user.name") | 18 | let l:user_name = system("git config --get user.name") |
19 | if v:shell_error | 19 | if v:shell_error |
20 | return "Unknow User" | 20 | return "Unknown User" |
21 | else | 21 | else |
22 | return substitute(l:user_name, "\n", "", "") | 22 | return substitute(l:user_name, "\n", "", "") |
23 | endfun | 23 | endfun |