Merge pull request #3244 from patrickeasters/patch-1

Fix typo for image digest regular expression in spec
This commit is contained in:
João Pereira 2021-02-06 11:28:55 +00:00 committed by GitHub
commit 3f0d066b5d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -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:
```
digest := algorithm ":" hex
algorithm := /[A-Fa-f0-9_+.-]+/
algorithm := /[A-Za-z0-9_+.-]+/
hex := /[A-Fa-f0-9]+/
```

View file

@ -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:
```
digest := algorithm ":" hex
algorithm := /[A-Fa-f0-9_+.-]+/
algorithm := /[A-Za-z0-9_+.-]+/
hex := /[A-Fa-f0-9]+/
```