From 8075bfc45527dd341350a12e398722c18db9bc9d Mon Sep 17 00:00:00 2001 From: Charles Korn Date: Sun, 3 Sep 2023 09:21:50 +1000 Subject: [PATCH] Update outdated link --- src/commonMain/kotlin/com/charleskorn/kaml/YamlConfiguration.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commonMain/kotlin/com/charleskorn/kaml/YamlConfiguration.kt b/src/commonMain/kotlin/com/charleskorn/kaml/YamlConfiguration.kt index 878b35ff..465aa428 100644 --- a/src/commonMain/kotlin/com/charleskorn/kaml/YamlConfiguration.kt +++ b/src/commonMain/kotlin/com/charleskorn/kaml/YamlConfiguration.kt @@ -23,7 +23,7 @@ package com.charleskorn.kaml * * * [encodeDefaults]: set to false to not write default property values to YAML (defaults to `true`) * * [strictMode]: set to true to throw an exception when reading an object that has an unknown property, or false to ignore unknown properties (defaults to `true`) - * * [extensionDefinitionPrefix]: prefix used on root-level keys (where document root is an object) to define extensions that can later be merged (defaults to `null`, which disables extensions altogether). See https://batect.charleskorn.com/config/Overview.html#anchors-aliases-extensions-and-merging for example. + * * [extensionDefinitionPrefix]: prefix used on root-level keys (where document root is an object) to define extensions that can later be merged (defaults to `null`, which disables extensions altogether). See https://batect.dev/docs/reference/config#anchors-aliases-extensions-and-merging for example. * * [polymorphismStyle]: how to read or write the type of a polymorphic object: * * [PolymorphismStyle.Tag]: use a YAML tag (eg. `! { property: value }`) * * [PolymorphismStyle.Property]: use a property (eg. `{ type: typeOfThing, property: value }`)