Skip to content

Commit

Permalink
Never force writing flow style maps
Browse files Browse the repository at this point in the history
  • Loading branch information
ArchLeaders committed Sep 9, 2024
1 parent f1bdefe commit 51723d0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ internal unsafe void EmitYaml(ref Utf8YamlEmitter emitter, in ImmutableByml root

foreach (var (index, change, node) in this) {
emitter.WriteInt32(index);
emitter.BeginMapping(MappingStyle.Flow);
emitter.BeginMapping();
{
emitter.WriteString(change.ToString());
BymlYamlWriter.Write(ref emitter, node, root);
Expand Down

0 comments on commit 51723d0

Please sign in to comment.