From 3c7425ddecad8155915fbd550e630d90682974fb Mon Sep 17 00:00:00 2001 From: rakaar Date: Thu, 16 Apr 2020 12:52:27 +0530 Subject: [PATCH] Corrected Minor syntax error in docs Signed-off-by: rakaar --- docs/getting-started/indy-walkthrough.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started/indy-walkthrough.md b/docs/getting-started/indy-walkthrough.md index 359cbd8e3b..a32e59e131 100644 --- a/docs/getting-started/indy-walkthrough.md +++ b/docs/getting-started/indy-walkthrough.md @@ -297,7 +297,7 @@ The same way **Acme** creates and publishes a **Credential Definition** for the await ledger.sign_and_submit_request(acme['pool'], acme['wallet'], acme['did'], cred_def_request) ``` -**Acme** anticipates revoking **Job-Certificate* credentials. It decides to create a revocation registry. One of Hyperledger Indy's revocation registry types uses cryptographic accumulators for publishing revoked credentials. For details about the inner working of those accumulators see [here](https://github.com/fabienpe/indy-sdk/blob/master/docs/concepts/revocation/cred-revocation.md)). The use of those accumulators requires the publication of "validity tails" outside of the Ledger. For the purpose of this demo, the validity tails are written in a file using a 'blob storage'. +**Acme** anticipates revoking **Job-Certificate** credentials. It decides to create a revocation registry. One of Hyperledger Indy's revocation registry types uses cryptographic accumulators for publishing revoked credentials. For details about the inner working of those accumulators see [here](https://github.com/fabienpe/indy-sdk/blob/master/docs/concepts/revocation/cred-revocation.md)). The use of those accumulators requires the publication of "validity tails" outside of the Ledger. For the purpose of this demo, the validity tails are written in a file using a 'blob storage'. ```python # Acme Agent