Skip to content

Commit

Permalink
Editorial: Use valid UUID in blob: URL example (#151)
Browse files Browse the repository at this point in the history
The algorithm for creating a blob URL references RFC4122 to generate a UUID. However the example contains an _invalid_ UUID (according to RFC4122): 9115d58c-bcda-ff47-86e5-083e9a215304

This given string is not a valid UUID because it does not contain a meaningful version field (the first character after the second dash).
  • Loading branch information
ctavan authored Apr 14, 2020
1 parent 2183e01 commit 3207e3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -1499,7 +1499,7 @@ generate a new blob URL</dfn>, run the following steps:

<div class="example">
An example of a blob URL that can be generated by this algorithm is
`blob:https://example.org/9115d58c-bcda-ff47-86e5-083e9a215304`1.
`blob:https://example.org/40a5fb5a-d56d-4a33-b4e2-0acf6a8e5f64`1.
</div>

<div algorithm="addBlobURL">
Expand Down

0 comments on commit 3207e3f

Please sign in to comment.