diff options
| author | Frank Dana <ferdnyc@gmail.com> | 2025-12-12 16:01:13 -0500 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2025-12-15 13:28:58 -0800 |
| commit | da2ea717323661772430fb1fceaea280da6c487e (patch) | |
| tree | 1e208ac09a198b4fd51ca7ce981aa309c5e744a1 | |
| parent | 499015e6ee9b9f47c214b485e5b97f4addb64129 (diff) | |
| download | meson-da2ea717323661772430fb1fceaea280da6c487e.tar.gz | |
docs(summary): Correct example output
The sample output for the example failed to jibe with reality
in several ways:
- 'prefix' was not included in the inputs, so it isn't displayed
- Boolean values are printed lowercase ('true', not 'True')
- The array formatting would be properly aligned
| -rw-r--r-- | docs/yaml/functions/summary.yaml | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/docs/yaml/functions/summary.yaml b/docs/yaml/functions/summary.yaml index b5312821e..f3b897540 100644 --- a/docs/yaml/functions/summary.yaml +++ b/docs/yaml/functions/summary.yaml @@ -47,18 +47,17 @@ example: | My Project 1.0 Directories - prefix : /opt/gnome bindir : bin libdir : lib/x86_64-linux-gnu datadir : share Configuration - Some boolean : False - Another boolean: True + Some boolean : false + Another boolean: true Some string : Hello World - An array : string + An array : string 1 - True + true ``` arg_flattening: false |
