Update expansion examples to latest syntax
authorMarkus Lanthaler <mark_lanthaler@gmx.net>
Tue, 03 Apr 2012 23:17:36 +0800
changeset 448 db9bd6eaf6be
parent 447 0b852c7d1186
child 449 15c897721650
Update expansion examples to latest syntax
spec/latest/json-ld-syntax/index.html
--- a/spec/latest/json-ld-syntax/index.html	Sun Apr 01 21:10:34 2012 +0800
+++ b/spec/latest/json-ld-syntax/index.html	Tue Apr 03 23:17:36 2012 +0800
@@ -2019,12 +2019,16 @@
 
 <pre class="example" data-transform="updateExample">
 <!--
-{
-   "http://xmlns.com/foaf/0.1/name": "Manu Sporny",
-   "http://xmlns.com/foaf/0.1/homepage": {
-      "@id": "http://manu.sporny.org/"
-   }
-}
+[
+  {
+    "http://xmlns.com/foaf/0.1/name": [ "Manu Sporny" ],
+    "http://xmlns.com/foaf/0.1/homepage": [
+      {
+       "@id": "http://manu.sporny.org/"
+      }
+    ]
+  }
+]
 -->
 </pre>
 </section>
@@ -2043,12 +2047,16 @@
 
 <pre class="example" data-transform="updateExample">
 <!--
-{
-  "http://xmlns.com/foaf/0.1/name": "Manu Sporny",
-  "http://xmlns.com/foaf/0.1/homepage": {
-    "@id": "http://manu.sporny.org/"
+[
+  {
+    "http://xmlns.com/foaf/0.1/name": [ "Manu Sporny" ],
+    "http://xmlns.com/foaf/0.1/homepage": [
+      {
+       "@id": "http://manu.sporny.org/"
+      }
+    ]
   }
-}
+]
 -->
 </pre>