forked from TrueCloudLab/distribution
Fix typo for digest regexp
Signed-off-by: Patrick Easters <peasters@redhat.com>
This commit is contained in:
parent
4269ab721f
commit
639de6a02f
2 changed files with 2 additions and 2 deletions
|
@ -334,7 +334,7 @@ digest. The _hex_ portion is the hex-encoded result of the hash.
|
||||||
We define a _digest_ string to match the following grammar:
|
We define a _digest_ string to match the following grammar:
|
||||||
```
|
```
|
||||||
digest := algorithm ":" hex
|
digest := algorithm ":" hex
|
||||||
algorithm := /[A-Fa-f0-9_+.-]+/
|
algorithm := /[A-Za-z0-9_+.-]+/
|
||||||
hex := /[A-Fa-f0-9]+/
|
hex := /[A-Fa-f0-9]+/
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -334,7 +334,7 @@ digest. The _hex_ portion is the hex-encoded result of the hash.
|
||||||
We define a _digest_ string to match the following grammar:
|
We define a _digest_ string to match the following grammar:
|
||||||
```
|
```
|
||||||
digest := algorithm ":" hex
|
digest := algorithm ":" hex
|
||||||
algorithm := /[A-Fa-f0-9_+.-]+/
|
algorithm := /[A-Za-z0-9_+.-]+/
|
||||||
hex := /[A-Fa-f0-9]+/
|
hex := /[A-Fa-f0-9]+/
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue