diff --git a/lib/src/xml2json.dart b/lib/src/xml2json.dart index 71be54d..7198f17 100644 --- a/lib/src/xml2json.dart +++ b/lib/src/xml2json.dart @@ -26,7 +26,10 @@ part of '../xml2json.dart'; /// /// See the individual transform classes for further documentation, however, all /// the transform functions convert XML data into JSON strings, so numbers -/// such as 150 become { "mynumber" : "150" } not { "mynumber" : 150 } +/// such as - +/// ``` +/// 150 become { "mynumber" : "150" } not { "mynumber" : 150 } +/// ``` /// /// If you're translating from ATOM then Badgerfish and GData are the /// better ones to use as they are less lossy. diff --git a/pubspec.yaml b/pubspec.yaml index ec8a98e..39527e9 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -14,11 +14,11 @@ dependencies: xml: '^6.5.0' dev_dependencies: - test: '^1.25.8' - lints: '^5.0.0' - build_runner: '^2.4.12' - build_test: '^2.2.2' - build_web_compilers: '^4.0.7' + test: '^1.25.14' + lints: '^5.1.1' + build_runner: '^2.4.14' + build_test: '^2.2.3' + build_web_compilers: '^4.1.0' topics: - conversion