Skip to content

Commit

Permalink
Disallow empty method-specific-id in ABNF.
Browse files Browse the repository at this point in the history
Addresses #34
  • Loading branch information
peacekeeper committed Mar 5, 2020
1 parent ad87e73 commit e26affd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -737,7 +737,7 @@ <h2 id="generic-did-syntax">Generic DID Syntax</h2>
did = "did:" method-name ":" method-specific-id
method-name = 1*method-char
method-char = %x61-7A / DIGIT
method-specific-id = *idchar *( ":" *idchar )
method-specific-id = *( ":" *idchar ) 1*idchar
idchar = ALPHA / DIGIT / "." / "-" / "_"
</pre>

Expand Down

0 comments on commit e26affd

Please sign in to comment.