@@ -25,7 +25,7 @@ This document includes errata for the [Activity Streams](https://www.w3.org/TR/a
25
25
are only allowed on `Link` objects. One alternative is to use `Link` objects
26
26
with the correct `height` and `width` as the `url` property for each `Image`
27
27
object.
28
-
28
+
29
29
```json
30
30
{
31
31
"@context" : " https://www.w3.org/ns/activitystreams" ,
@@ -60,14 +60,14 @@ This document includes errata for the [Activity Streams](https://www.w3.org/TR/a
60
60
- The range of the `units` property is given as an enumerated set of values.
61
61
Due to a formatting error, some of these values are shown with an incorrect
62
62
leading space character. The correct range is:
63
-
63
+
64
64
```text
65
65
" cm" | "feet" | "inches" | "km" | "m" | "miles" | xsd:anyURI
66
66
```
67
67
68
68
- Example 58 includes a `summary` property on a `Mention` object, which is
69
69
not allowed. A corrected example:
70
-
70
+
71
71
```json
72
72
{
73
73
"@context" : " https://www.w3.org/ns/activitystreams" ,
@@ -129,24 +129,24 @@ This document includes errata for the [Activity Streams](https://www.w3.org/TR/a
129
129
}
130
130
}
131
131
```
132
-
132
+
133
133
- Example 102 is missing a `type` property on the `Link` value of the `url` property. For clarity, the example should read:
134
134
135
- ```json
136
- {
137
- "@context" : " https://www.w3.org/ns/activitystreams" ,
138
- "type" : " Video" ,
139
- "name" : " Cool New Movie" ,
140
- "duration" : " PT2H30M" ,
141
- "preview" : {
142
- "type" : " Video" ,
143
- "name" : " Trailer" ,
144
- "duration" : " PT1M" ,
145
- "url" : {
146
- "type" : " Link" ,
147
- "href" : " http://example.org/trailer.mkv" ,
148
- "mediaType" : " video/mkv"
135
+ ```json
136
+ {
137
+ "@context" : " https://www.w3.org/ns/activitystreams" ,
138
+ "type" : " Video" ,
139
+ "name" : " Cool New Movie" ,
140
+ "duration" : " PT2H30M" ,
141
+ "preview" : {
142
+ "type" : " Video" ,
143
+ "name" : " Trailer" ,
144
+ "duration" : " PT1M" ,
145
+ "url" : {
146
+ "type" : " Link" ,
147
+ "href" : " http://example.org/trailer.mkv" ,
148
+ "mediaType" : " video/mkv"
149
+ }
150
+ }
149
151
}
150
- }
151
- }
152
- ```
152
+ ```
0 commit comments