diff --git a/src/main/java/com/amihaiemil/eoyaml/WellIndented.java b/src/main/java/com/amihaiemil/eoyaml/WellIndented.java index 6d881260..4b2515b8 100644 --- a/src/main/java/com/amihaiemil/eoyaml/WellIndented.java +++ b/src/main/java/com/amihaiemil/eoyaml/WellIndented.java @@ -62,13 +62,11 @@ * @author Mihai Andronache (amihaiemil@gmail.com) * @version $Id$ * @since 3.1.2 - * @todo #525:3h Please make sure to allow keys with empty values in mappings. + * @todo #525:60m Please make sure to allow keys with empty values in mappings. * At the moment, if we cannot find the value on the same line, we always * look beneath the key for more-indented lines to be treated as the value, - * but this is not always the case. This should be a valid YAML: - * key1: value1 - * key2: - * key3: value3 + * but this is not always the case. This should be a valid YAML + * {key1: value1, key2:,key3: value3} */ final class WellIndented implements YamlLines {