Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(699)

Unified Diff: pkg/yaml/lib/src/constructor.dart

Issue 318513002: Fix a variable name typo in yaml. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/yaml/lib/src/composer.dart ('k') | pkg/yaml/lib/src/parser.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/yaml/lib/src/constructor.dart
diff --git a/pkg/yaml/lib/src/constructor.dart b/pkg/yaml/lib/src/constructor.dart
index a8224a493868191241b5ecbb94e12f730257f62d..5cf23c7c59ecfbf1d6825f03a645721d48620c84 100644
--- a/pkg/yaml/lib/src/constructor.dart
+++ b/pkg/yaml/lib/src/constructor.dart
@@ -53,7 +53,7 @@ class Constructor extends Visitor {
YamlNode getAnchor(Node anchored) {
if (anchored.anchor == null) return null;
var value = _anchors[anchored.anchor];
- if (vaule == null) return null;
+ if (value == null) return null;
// Re-wrap [value]'s contents so that it's associated with the span of the
// anchor rather than its original definition.
« no previous file with comments | « pkg/yaml/lib/src/composer.dart ('k') | pkg/yaml/lib/src/parser.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698