From 9650bbb13abb394884d5637fd95d6822f3e2eaed Mon Sep 17 00:00:00 2001 From: bigq Date: Mon, 4 Sep 2023 11:55:25 +0000 Subject: [PATCH] GITBOOK-524: typo: `getReponse` -> `getResponse` --- .../technical-documentation/auths.md | 10 +++++----- .../technical-documentation/claims.md | 12 ++++++------ .../technical-documentation/signature.md | 8 ++++---- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/build-with-sismo-connect/technical-documentation/auths.md b/build-with-sismo-connect/technical-documentation/auths.md index 92d13fa..8656891 100644 --- a/build-with-sismo-connect/technical-documentation/auths.md +++ b/build-with-sismo-connect/technical-documentation/auths.md @@ -112,7 +112,7 @@ The `useSismoConnect` hook is available from the [sismo-connect-react package](p * One or multiple AuthRequests can be made using the `sismoConnect.request()` method available on the `sismoConnect` variable. * The response could be received through either: - 1. the `sismoConnect.getReponse()` method for offchain verification or, + 1. the `sismoConnect.getResponse()` method for offchain verification or, 2. the `sismoConnect.getResponseBytes()` method for onchain verification. #### One AuthRequest - code example @@ -163,7 +163,7 @@ function onClick(){ } // Proofs are available in two differents types depending on usage (offchain or onchaon verification) -const response: SismoConnectResponse | null = sismoConnect.getReponse(); +const response: SismoConnectResponse | null = sismoConnect.getResponse(); const responseBytes: string | null = sismoConnect.getResponseBytes(); if(response || responseBytes) { @@ -179,7 +179,7 @@ The [`sismo-connect-client` package](packages/client.md) exposes a `SismoConnect * One or multiple AuthRequests can be made using the `sismoConnect.request()` method available on a `SismoConnect` instance. * The response could be received through either: - 1. the `sismoConnect.getReponse()` method for offchain verification or, + 1. the `sismoConnect.getResponse()` method for offchain verification or, 2. the `sismoConnect.getResponseBytes()` method for onchain verification. #### One AuthRequest - code example @@ -199,7 +199,7 @@ function onClick(){ } // Receive the proofs in two different formats -const response: SismoConnectResponse | null = sismoConnect.getReponse(); +const response: SismoConnectResponse | null = sismoConnect.getResponse(); const responseBytes: string | null = sismoConnect.getResponseBytes(); if(response || responseBytes) { @@ -229,7 +229,7 @@ function onClick(){ } // Receive the proofs in two different formats -const response: SismoConnectResponse | null = sismoConnect.getReponse(); +const response: SismoConnectResponse | null = sismoConnect.getResponse(); const responseBytes: string | null = sismoConnect.getResponseBytes(); if(response || responseBytes) { diff --git a/build-with-sismo-connect/technical-documentation/claims.md b/build-with-sismo-connect/technical-documentation/claims.md index cba4131..e0060b9 100644 --- a/build-with-sismo-connect/technical-documentation/claims.md +++ b/build-with-sismo-connect/technical-documentation/claims.md @@ -116,7 +116,7 @@ The `useSismoConnect` hook is available from the [sismo-connect-react package](p * One or multiple claim requests can be made using the `sismoConnect.request()` method available on the `sismoConnect` variable. * Responses could be received through either: - 1. the `sismoConnect.getReponse()` method for offchain verification or, + 1. the `sismoConnect.getResponse()` method for offchain verification or, 2. the `sismoConnect.getResponseBytes()` method for onchain verification. **One ClaimRequest - code example** @@ -136,7 +136,7 @@ function onClick(){ } // Proofs are available in two differents types depending on usage (offchain or onchaon verification) -const response: SismoConnectResponse | null = sismoConnect.getReponse(); +const response: SismoConnectResponse | null = sismoConnect.getResponse(); const responseBytes: string | null = sismoConnect.getResponseBytes(); if(response || responseBytes) { @@ -167,7 +167,7 @@ function onClick(){ } // Proofs are available in two differents types depending on usage (offchain or onchaon verification) -const response: SismoConnectResponse | null = sismoConnect.getReponse(); +const response: SismoConnectResponse | null = sismoConnect.getResponse(); const responseBytes: string | null = sismoConnect.getResponseBytes(); if(response || responseBytes) { @@ -183,7 +183,7 @@ The [`sismo-connect-client` package](packages/client.md) exposes a `SismoConnect * One or multiple ClaimRequests can be made using the `sismoConnect.request()` method available on a `SismoConnect` instance. * Responses could be received through either: - 1. the `sismoConnect.getReponse()` method for offchain verification or, + 1. the `sismoConnect.getResponse()` method for offchain verification or, 2. the `sismoConnect.getResponseBytes()` method for onchain verification. **One ClaimRequest - code example** @@ -203,7 +203,7 @@ function onClick(){ } // Receive the proofs in two different formats -const response: SismoConnectResponse | null = sismoConnect.getReponse(); +const response: SismoConnectResponse | null = sismoConnect.getResponse(); const responseBytes: string | null = sismoConnect.getResponseBytes(); if(response || responseBytes) { @@ -233,7 +233,7 @@ function onClick(){ } // Receive the proofs in two different formats -const response: SismoConnectResponse | null = sismoConnect.getReponse(); +const response: SismoConnectResponse | null = sismoConnect.getResponse(); const responseBytes: string | null = sismoConnect.getResponseBytes(); if(response || responseBytes) { diff --git a/build-with-sismo-connect/technical-documentation/signature.md b/build-with-sismo-connect/technical-documentation/signature.md index 32f58f3..a987a76 100644 --- a/build-with-sismo-connect/technical-documentation/signature.md +++ b/build-with-sismo-connect/technical-documentation/signature.md @@ -88,7 +88,7 @@ The `useSismoConnect` hook is available from the [sismo-connect-react package](p * One or multiple claim requests can be made using the `sismoConnect.request()` method available on the `sismoConnect` variable. * Responses could be received through either: - 1. the `sismoConnect.getReponse()` method for offchain verification or, + 1. the `sismoConnect.getResponse()` method for offchain verification or, 2. the `sismoConnect.getResponseBytes()` method for onchain verification. #### One ClaimRequest - code example @@ -110,7 +110,7 @@ function onClick(){ } // Proofs are available in two differents types depending on usage (offchain or onchaon verification) -const response: SismoConnectResponse | null = sismoConnect.getReponse(); +const response: SismoConnectResponse | null = sismoConnect.getResponse(); const responseBytes: string | null = sismoConnect.getResponseBytes(); if(response || responseBytes) { @@ -127,7 +127,7 @@ The [`sismo-connect-client` package](packages/client.md) exposes a `SismoConnect * One or multiple ClaimRequests can be made using the `sismoConnect.request()` method available on a `SismoConnect` instance. * Responses could be received through either: - 1. the `sismoConnect.getReponse()` method for offchain verification or, + 1. the `sismoConnect.getResponse()` method for offchain verification or, 2. the `sismoConnect.getResponseBytes()` method for onchain verification. #### One ClaimRequest - code example @@ -150,7 +150,7 @@ function onClick(){ } // Receive the proofs in two different formats -const response: SismoConnectResponse | null = sismoConnect.getReponse(); +const response: SismoConnectResponse | null = sismoConnect.getResponse(); const responseBytes: string | null = sismoConnect.getResponseBytes(); if(response || responseBytes) {