Skip to content

Commit

Permalink
docs: add missing quotes (#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
jpcsmith committed Sep 6, 2024
1 parent 0e699cf commit e0b5123
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/usage/web-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,13 +128,13 @@ Blobs may be read from an aggregator or daemon using HTTP GET. For example, the
command reads a blob and writes it to an output file:

```sh
curl "$AGGREGATOR/v1/<some blob ID> -o <some file name>"
curl "$AGGREGATOR/v1/<some blob ID>" -o <some file name>
```

Alternatively you may print the contents of a blob in the terminal with the cURL command:

```sh
curl "$AGGREGATOR/v1/<some blob ID>
curl "$AGGREGATOR/v1/<some blob ID>"
```

```admonish tip title="Content sniffing"
Expand Down

0 comments on commit e0b5123

Please sign in to comment.