Skip to content

Commit

Permalink
docs: fix sites:delete docs
Browse files Browse the repository at this point in the history
  • Loading branch information
syntaxhacker authored Aug 30, 2020
1 parent f88b460 commit 712bde2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/commands/sites.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ netlify sites:delete {site-id}

**Arguments**

- siteId - Site ID to delete. `netlify delete 1234-5678-890`
- siteId - Site ID to delete.

**Flags**

Expand All @@ -78,7 +78,7 @@ netlify sites:delete {site-id}
**Examples**

```bash
netlify site:delete 1234-3262-1211
netlify sites:delete 1234-3262-1211
```

---
Expand Down
4 changes: 2 additions & 2 deletions src/commands/sites/delete.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ SitesDeleteCommand.args = [
{
name: 'siteId',
required: true,
description: 'Site ID to delete. `netlify delete 1234-5678-890`',
description: 'Site ID to delete.',
},
]

Expand All @@ -116,6 +116,6 @@ SitesDeleteCommand.flags = {
}),
}

SitesDeleteCommand.examples = ['netlify site:delete 1234-3262-1211']
SitesDeleteCommand.examples = ['netlify sites:delete 1234-3262-1211']

module.exports = SitesDeleteCommand

0 comments on commit 712bde2

Please sign in to comment.