docs: fix parseMinimalYaml JSDoc (nit from #352 review)

Refs #351
This commit is contained in:
2026-05-19 05:41:18 +00:00
parent f174b96028
commit 37c35560e9
@@ -135,7 +135,7 @@ function parseKeyValue(
* - Scalar key: value pairs
* - Block sequences under a key (items prefixed with ` - `)
*
* Returns a plain object. Throws on structural errors.
* Returns a plain object. Never throws — unparseable lines are silently skipped.
*/
function parseMinimalYaml(yaml: string): Record<string, YamlValue> {
const result: Record<string, YamlValue> = {};