| Index: pkg/yaml/lib/src/yaml_node.dart
|
| diff --git a/pkg/yaml/lib/src/yaml_node.dart b/pkg/yaml/lib/src/yaml_node.dart
|
| index 4f770609b36ea17a9821183575b06bfe3e8eb037..6320156e19febf53647698814f1f57e9ef91d511 100644
|
| --- a/pkg/yaml/lib/src/yaml_node.dart
|
| +++ b/pkg/yaml/lib/src/yaml_node.dart
|
| @@ -117,7 +117,7 @@ class YamlList extends YamlNode with collection.ListMixin {
|
| /// Any [SourceSpan]s returned by this list or its children will be dummies
|
| /// without useful location information. However, they will have a reasonable
|
| /// implementation of [SourceSpan.getLocationMessage]. If [sourceUrl] is
|
| - /// passed, it's used as the [Span.sourceUrl].
|
| + /// passed, it's used as the [SourceSpan.sourceUrl].
|
| ///
|
| /// [sourceUrl] may be either a [String], a [Uri], or `null`.
|
| factory YamlList.wrap(List dartList, {sourceUrl}) =>
|
| @@ -144,7 +144,7 @@ class YamlScalar extends YamlNode {
|
| ///
|
| /// This scalar's [span] won't have useful location information. However, it
|
| /// will have a reasonable implementation of [SourceSpan.message]. If
|
| - /// [sourceUrl] is passed, it's used as the [Span.sourceUrl].
|
| + /// [sourceUrl] is passed, it's used as the [SourceSpan.sourceUrl].
|
| ///
|
| /// [sourceUrl] may be either a [String], a [Uri], or `null`.
|
| YamlScalar.wrap(this.value, {sourceUrl})
|
|
|