w3c / encrypted-media

Encrypted Media Extensions
https://w3c.github.io/encrypted-media/
Other
180 stars 80 forks source link

Example 2 in section 9.1.4.1 uses wrong single quotes. #496

Closed elialgranti closed 2 years ago

elialgranti commented 2 years ago

In the JSON "Example 2" of section 9.1.4.1 the field type uses single quotes instead of double quotes

EXAMPLE 2
{
<snip>
  'type':"temporary"
}

Should be:

EXAMPLE 2
{
<snip>
  "type":"temporary"
}