diff options
author | Joe Mooring <[email protected]> | 2021-11-01 10:43:41 -0700 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2021-11-01 18:54:43 +0100 |
commit | 04a3b45db4cd28b4821b5c98cd67dfbf1d098957 (patch) | |
tree | cda314834fe9579279cb79a8d1ec90a5c60a4ab3 /docs/data | |
parent | 0cc39af68232f1a4981aae2e72cf65da762b5768 (diff) | |
download | hugo-04a3b45db4cd28b4821b5c98cd67dfbf1d098957.tar.gz hugo-04a3b45db4cd28b4821b5c98cd67dfbf1d098957.zip |
Fix description of lang.FormatNumberCustom
It currently refers to itself as a simple alternative, when it should
refer to lang.FormatNumber.
Diffstat (limited to 'docs/data')
-rw-r--r-- | docs/data/docs.json | 65 |
1 files changed, 62 insertions, 3 deletions
diff --git a/docs/data/docs.json b/docs/data/docs.json index 04916b581..c1e640ac6 100644 --- a/docs/data/docs.json +++ b/docs/data/docs.json @@ -88,6 +88,14 @@ ] }, { + "Name": "ArmAsm", + "Aliases": [ + "S", + "armasm", + "s" + ] + }, + { "Name": "Awk", "Aliases": [ "awk", @@ -134,6 +142,15 @@ ] }, { + "Name": "BashSession", + "Aliases": [ + "bash-session", + "console", + "sh-session", + "shell-session" + ] + }, + { "Name": "Batchfile", "Aliases": [ "bat", @@ -437,6 +454,13 @@ ] }, { + "Name": "Fennel", + "Aliases": [ + "fennel", + "fnl" + ] + }, + { "Name": "Fish", "Aliases": [ "fish", @@ -803,6 +827,15 @@ ] }, { + "Name": "Meson", + "Aliases": [ + "build", + "meson", + "meson.build", + "txt" + ] + }, + { "Name": "Metal", "Aliases": [ "metal" @@ -926,6 +959,19 @@ ] }, { + "Name": "OnesEnterprise", + "Aliases": [ + "1S", + "1S:Enterprise", + "EPF", + "ERF", + "epf", + "erf", + "ones", + "onesenterprise" + ] + }, + { "Name": "OpenSCAD", "Aliases": [ "openscad", @@ -1270,6 +1316,13 @@ ] }, { + "Name": "Sieve", + "Aliases": [ + "sieve", + "siv" + ] + }, + { "Name": "Smalltalk", "Aliases": [ "smalltalk", @@ -3903,7 +3956,7 @@ }, "lang": { "FormatAccounting": { - "Description": "FormatAccounting returns the currency reprecentation of number for the given currency and precision\nfor the current language in accounting notation.", + "Description": "FormatAccounting returns the currency representation of number for the given currency and precision\nfor the current language in accounting notation.\n\nThe return value is formatted with at least two decimal places.", "Args": [ "precision", "currency", @@ -3918,7 +3971,7 @@ ] }, "FormatCurrency": { - "Description": "FormatCurrency returns the currency reprecentation of number for the given currency and precision\nfor the current language.", + "Description": "FormatCurrency returns the currency representation of number for the given currency and precision\nfor the current language.\n\nThe return value is formatted with at least two decimal places.", "Args": [ "precision", "currency", @@ -3947,7 +4000,7 @@ ] }, "FormatNumberCustom": { - "Description": "FormatNumberCustom formats a number with the given precision using the\nnegative, decimal, and grouping options. The `options`\nparameter is a string consisting of `\u003cnegative\u003e \u003cdecimal\u003e \u003cgrouping\u003e`. The\ndefault `options` value is `- . ,`.\n\nNote that numbers are rounded up at 5 or greater.\nSo, with precision set to 0, 1.5 becomes `2`, and 1.4 becomes `1`.\n\nFor a simpler function that adapts to the current language, see FormatNumberCustom.", + "Description": "FormatNumberCustom formats a number with the given precision using the\nnegative, decimal, and grouping options. The `options`\nparameter is a string consisting of `\u003cnegative\u003e \u003cdecimal\u003e \u003cgrouping\u003e`. The\ndefault `options` value is `- . ,`.\n\nNote that numbers are rounded up at 5 or greater.\nSo, with precision set to 0, 1.5 becomes `2`, and 1.4 becomes `1`.\n\nFor a simpler function that adapts to the current language, see FormatNumber.", "Args": [ "precision", "number", @@ -4331,6 +4384,12 @@ "Aliases": null, "Examples": null }, + "Clean": { + "Description": "", + "Args": null, + "Aliases": null, + "Examples": null + }, "Dir": { "Description": "", "Args": null, |