Skip to content

Commit

Permalink
Fix documentation. Numbers passed into input and outputs methods are …
Browse files Browse the repository at this point in the history
…input and output IDs, not job IDs.
  • Loading branch information
Craig Anderson authored and Craig Anderson committed Sep 3, 2015
1 parent 5a99056 commit 9db1a4e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -92,15 +92,15 @@ client.job.cancel(1)

Get [details](https://app.zencoder.com/docs/api/inputs/show) about an input.

The number passed to `details` is the ID of a Zencoder job.
The number passed to `details` is the ID of a Zencoder input.

```python
client.input.details(1)
```

Get [progress](https://app.zencoder.com/docs/api/inputs/progress) for an input.

The number passed to `progress` is the ID of a Zencoder job.
The number passed to `progress` is the ID of a Zencoder input.

```python
client.input.progress(1)
Expand All @@ -109,15 +109,15 @@ client.input.progress(1)

Get [details](https://app.zencoder.com/docs/api/outputs/show) about an output.

The number passed to `details` is the ID of a Zencoder job.
The number passed to `details` is the ID of a Zencoder output.

```python
client.output.details(1)
```

Get [progress](https://app.zencoder.com/docs/api/outputs/progress) for an output.

The number passed to `progress` is the ID of a Zencoder job.
The number passed to `progress` is the ID of a Zencoder output.

```python
client.output.progress(1)
Expand Down

0 comments on commit 9db1a4e

Please sign in to comment.