From 9db1a4e435618ae60460b4b598ab2716674d8501 Mon Sep 17 00:00:00 2001 From: Craig Anderson Date: Thu, 3 Sep 2015 17:27:35 +1000 Subject: [PATCH] Fix documentation. Numbers passed into input and outputs methods are input and output IDs, not job IDs. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index decc45f..dfc5dac 100644 --- a/README.md +++ b/README.md @@ -92,7 +92,7 @@ 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) @@ -100,7 +100,7 @@ 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) @@ -109,7 +109,7 @@ 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) @@ -117,7 +117,7 @@ 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)