Skip to content
This repository was archived by the owner on Feb 22, 2018. It is now read-only.

Actioning comment #5 on dartbug #6470 #23

Merged
merged 4 commits into from
Nov 12, 2012
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/site/articles/json-web-service/index.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ converting from a JSON string, by using the default constructor:
{% highlight dart %}
Language data = new JsonObject();
data.language = "Dart";
data.website = new LanguageWebsite();
data.website = new JsonObject();
data.website.homepage = "http://www.dartlang.org";
{% endhighlight %}

Expand Down