Fix docs building warnings

This commit is contained in:
Sylvain Bellemare 2016-12-07 19:59:22 +01:00 committed by Sylvain Bellemare
parent 20f629256b
commit 3bdaf60acb
3 changed files with 5 additions and 5 deletions

View File

@ -147,7 +147,7 @@ definitions:
"$ref": "#/definitions/offset"
description: |
Index of this condition's appearance in the `Transaction.conditions`_
array. In a transaction with 2 conditions, the ``cid``s will be 0 and 1.
array. In a transaction with 2 conditions, the ``cid`` s will be 0 and 1.
condition:
description: |
Body of the condition. Has the properties:

View File

@ -411,13 +411,13 @@ class Bigchain(object):
return None
def get_owned_ids(self, owner):
"""Retrieve a list of `txid`s that can be used as inputs.
"""Retrieve a list of ``txid`` s that can be used as inputs.
Args:
owner (str): base58 encoded public key.
Returns:
:obj:`list` of TransactionLink: list of `txid`s and `cid`s
:obj:`list` of TransactionLink: list of ``txid`` s and ``cid`` s
pointing to another transaction's condition
"""

View File

@ -190,8 +190,8 @@ GET /unspents/
Content-Type: application/json
[
'../transactions/2d431073e1477f3073a4693ac7ff9be5634751de1b8abaa1f4e19548ef0b4b0e/conditions/0',
'../transactions/2d431073e1477f3073a4693ac7ff9be5634751de1b8abaa1f4e19548ef0b4b0e/conditions/1'
"../transactions/2d431073e1477f3073a4693ac7ff9be5634751de1b8abaa1f4e19548ef0b4b0e/conditions/0",
"../transactions/2d431073e1477f3073a4693ac7ff9be5634751de1b8abaa1f4e19548ef0b4b0e/conditions/1"
]
:statuscode 200: A list of outputs were found and returned in the body of the response.