Skip to content

Commit

Permalink
Merge pull request #25 from ahadley1124/patch-1
Browse files Browse the repository at this point in the history
Fix Missing Backtick
  • Loading branch information
AlecTroemel committed Feb 19, 2024
2 parents 1ced89f + c9f651a commit 46d5044
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Expand Up @@ -125,7 +125,7 @@ pub struct Config {
/// A property name for XML text nodes.
/// E.g. set it to `text` for `<x a="Hello!">Goodbye!</x>` to become `{"x": {"@a":"Hello!", "text":"Goodbye!"}}`
/// XML nodes with text only and no attributes or no child elements are converted into JSON properties with the
/// name of the element. E.g. <x>Goodbye!</x>` becomes `{"x":"Goodbye!"}`
/// name of the element. E.g. `<x>Goodbye!</x>` becomes `{"x":"Goodbye!"}`
/// Defaults to `#text`
pub xml_text_node_prop_name: String,
/// Defines how empty elements like `<x />` should be handled.
Expand Down

0 comments on commit 46d5044

Please sign in to comment.