From 9054d4d3af6ddff3277f369e0e700c3e4fdddb2a Mon Sep 17 00:00:00 2001 From: rem1776 Date: Tue, 20 Aug 2024 11:55:03 -0400 Subject: [PATCH] fix note in docs comment --- parser/yaml_output_functions.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/parser/yaml_output_functions.c b/parser/yaml_output_functions.c index 344a85e75..b44f2ea35 100644 --- a/parser/yaml_output_functions.c +++ b/parser/yaml_output_functions.c @@ -90,8 +90,8 @@ void keyerror(yaml_event_t * event, yaml_emitter_t * emitter){ fprintf(stdout, "WARNING: YAML_OUTPUT: Failed to emit event %d: %s\n", event->type, emitter->problem); } /* \brief Writes the key/value pairs of the fmsyamloutkeys and fmsyamloutvalues structs - * \note If any values start with '[' it will be assumed the value is a yaml array - * There may be slight differences in spacing for array outputs + * \note If second value (val2) in struct starts with '[' it will be assumed the value is a yaml array + * There may be slight differences in spacing for array outputs vs what is read in. * \param emitter The libyaml emitter for this file * \param event The libyaml eent pointer * \param aindex The index of keys and vals that are being written currently