From 639de6a02fc25a68afb68ee1787dd83621e73178 Mon Sep 17 00:00:00 2001 From: Patrick Easters Date: Wed, 2 Sep 2020 08:09:15 -0400 Subject: [PATCH] Fix typo for digest regexp Signed-off-by: Patrick Easters --- docs/spec/api.md | 2 +- docs/spec/api.md.tmpl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/spec/api.md b/docs/spec/api.md index 605af5a42..747b4f816 100644 --- a/docs/spec/api.md +++ b/docs/spec/api.md @@ -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]+/ ``` diff --git a/docs/spec/api.md.tmpl b/docs/spec/api.md.tmpl index 9dce5f5b8..7fcc566e5 100644 --- a/docs/spec/api.md.tmpl +++ b/docs/spec/api.md.tmpl @@ -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]+/ ```