Skip to content
This repository was archived by the owner on Feb 12, 2021. It is now read-only.

Commit

Permalink
Correct mistake in did regex [0-9] not [09].
Browse files Browse the repository at this point in the history
  • Loading branch information
aljones15 authored and msporny committed Feb 26, 2020
1 parent 7492fba commit c12917d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/assertions.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* eslint-disable max-len */

// method-char = %x61-7A / DIGIT
const methodChar = '[a-z09]';
const methodChar = '[a-z0-9]';

// method-specific-id = *idchar *( ":" *idchar )
// idchar = ALPHA / DIGIT / "." / "-" / "_"
Expand Down

0 comments on commit c12917d

Please sign in to comment.