From 31739c2586b50966172d4f32777c0b932de2d715 Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Sun, 6 Feb 2022 18:39:35 +0900 Subject: [PATCH] docs: fix typo (#13381) --- doc/docs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/docs.md b/doc/docs.md index ad25608e80..8b24b89b49 100644 --- a/doc/docs.md +++ b/doc/docs.md @@ -585,7 +585,7 @@ To use a format specifier, follow this pattern: support the use of `'` or `#` as format flags, and V supports but doesn't need `+` to right-align since that's the default.) - width: may be an integer value describing the minimum width of total field to output. -- precision: an integer value preceeded by a `.` will guarantee that many digits after the decimal +- precision: an integer value preceded by a `.` will guarantee that many digits after the decimal point, if the input variable is a float. Ignored if variable is an integer. - type: `f` and `F` specify the input is a float and should be rendered as such, `e` and `E` specify the input is a float and should be rendered as an exponent (partially broken), `g` and `G` specify