Skip to content

Commit

Permalink
Apply typo fixes from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Alan Shaw <[email protected]>
  • Loading branch information
travis and Alan Shaw authored Sep 11, 2023
1 parent 5d00480 commit 1a12b73
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions w3-admin.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "S

## Capabilities

### consumer/get
### `consumer/get`

Get information about a consumer (i.e., a space).

Expand All @@ -52,7 +52,7 @@ Get information about a consumer (i.e., a space).

#### capability definition

```javascript=
```javascript
export const get = capability({
can: 'consumer/get',
with: ProviderDID,
Expand All @@ -69,7 +69,7 @@ export const get = capability({
})
```

### customer/get
### `customer/get`

Get information about a customer.

Expand All @@ -80,6 +80,7 @@ Get information about a customer.
#### returns

```typescript
{
did: AccountDID
subscriptions: string[]
}
Expand All @@ -91,7 +92,7 @@ Get information about a customer.

#### capability definition

```javascript=
```javascript
export const get = capability({
can: 'customer/get',
with: ProviderDID,
Expand All @@ -108,7 +109,7 @@ export const get = capability({
})
```

### subscription/get
### `subscription/get`

Get information about a subscription.

Expand All @@ -131,7 +132,7 @@ Get information about a subscription.

#### capability definition

```javascript=
```javascript
export const get = capability({
can: 'subscription/get',
with: ProviderDID,
Expand Down

0 comments on commit 1a12b73

Please sign in to comment.