Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/design/w3c/w3c-representation.md
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ w3c_credential = Holder.anoncreds_credential_to_w3c(legacy_credential)
Wallet.store_legacy_credential(legacy_credential)
Wallet.store_w3c_credential(w3c_credential)

/// Verifiy W3C preentation using converted W3C crdential form
/// Verify W3C preentation using converted W3C crdential form
w3c_presentation_request = Verifier.w3c_create_presentation_request()
w3c_presentation = Holder.anoncreds_w3c_create_presentation(w3c_presentation_request, w3c_credentials)
Verifier.anoncreds_w3c_verify_presentation(w3c_presentation)
Expand All @@ -275,7 +275,7 @@ legacy_credential = Holder.anoncreds_credential_from_w3c(w3c_credential)
Wallet.store_legacy_credential(legacy_credential)
Wallet.store_w3c_credential(w3c_credential)

/// Verifiy legacy presentation using converted Iny crdential form
/// Verify legacy presentation using converted Iny crdential form
legacy_presentation_request = Verifier.create_presentation_request()
legacy_presentation = Holder.create_presentation(legacy_presentation_request, legacy_credential)
Verifier.anoncreds_verify_presentation(legacy_presentation)
Expand All @@ -293,7 +293,7 @@ w3c_credential = Holder.anoncreds_w3c_process_credential(w3c_credential,...)
/// Do wallets need to store both credential forms to handle legacy and DIF presentations requests?
Wallet.store_w3c_credential(w3c_credential)

/// Verifiy W3C presenttion using W3C crdential form
/// Verify W3C presenttion using W3C crdential form
w3c_presentation_request = Verifier.w3c_create_presentation_request()
w3c_presentation = Holder.anoncreds_w3c_create_presentation(w3c_presentation_request, w3c_credential)
Verifier.anoncreds_w3c_verify_presentation(w3c_presentation)
Expand Down
2 changes: 1 addition & 1 deletion wrappers/javascript/packages/anoncreds-shared/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ import '@hyperledger/anoncreds-nodejs'
import '@hyperledger/anoncreds-react-native'
```

An alterative approach is to first try to require the Node.JS package, and otherwise require the React Native package:
An alternative approach is to first try to require the Node.JS package, and otherwise require the React Native package:

```typescript
try {
Expand Down
2 changes: 1 addition & 1 deletion wrappers/python/anoncreds/bindings.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ def __repr__(self) -> str:

@classmethod
def _cleanup(cls, buffer: RawBuffer):
"""Call the byte buffer desctructor when this instance is released."""
"""Call the byte buffer destructor when this instance is released."""
get_library().anoncreds_buffer_free(buffer)


Expand Down
Loading