comparison runtime/doc/builtin.txt @ 33945:27746ed6cb05

runtime(doc): grammar & typo fixes Commit: https://github.com/vim/vim/commit/17dca3cb97cdd7835e334b990565c8c0b93b1284 Author: Dominique Pell? <dominique.pelle@tomtom.com> Date: Thu Dec 14 20:36:32 2023 +0100 runtime(doc): grammar & typo fixes closes: https://github.com/vim/vim/issues/13654
author Christian Brabandt <cb@256bit.org>
date Thu, 14 Dec 2023 20:45:04 +0100
parents 050160b94f02
children 62d771d915fe
comparison
equal deleted inserted replaced
33944:4cacac1abdb8 33945:27746ed6cb05
1 *builtin.txt* For Vim version 9.0. Last change: 2023 Nov 20 1 *builtin.txt* For Vim version 9.0. Last change: 2023 Dec 14
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
6686 treated as though it were missing. Example: > 6686 treated as though it were missing. Example: >
6687 :echo printf("%d: %.*s", nr, width, line) 6687 :echo printf("%d: %.*s", nr, width, line)
6688 < This limits the length of the text used from "line" to 6688 < This limits the length of the text used from "line" to
6689 "width" bytes. 6689 "width" bytes.
6690 6690
6691 If the argument to be formatted is specified using a posional 6691 If the argument to be formatted is specified using a
6692 argument specifier, and a '*' is used to indicate that a 6692 positional argument specifier, and a '*' is used to indicate
6693 number argument is to be used to specify the width or 6693 that a number argument is to be used to specify the width or
6694 precision, the argument(s) to be used must also be specified 6694 precision, the argument(s) to be used must also be specified
6695 using a {n$} positional argument specifier. See |printf-$|. 6695 using a {n$} positional argument specifier. See |printf-$|.
6696 6696
6697 The conversion specifiers and their meanings are: 6697 The conversion specifiers and their meanings are:
6698 6698