Skip to content

Commit

Permalink
Fix some typo in SELECT API doc (#834)
Browse files Browse the repository at this point in the history
  • Loading branch information
vadmeste authored and kannappanr committed Dec 16, 2019
1 parent b99dd54 commit 4edf6c6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/API.md
Original file line number Diff line number Diff line change
Expand Up @@ -671,7 +671,7 @@ except ResponseError as err:
```

<a name="select_object_content"></a>
### select_object_content(self, bucket_name, object_name, options)
### select_object_content(bucket_name, object_name, options)
Select object content filters the contents of object based on a simple structured query language (SQL).

__Parameters__
Expand All @@ -680,7 +680,7 @@ __Parameters__
|:---|:---|:---|
|``bucket_name`` |_string_ |Name of the bucket. |
|``object_name`` |_string_ |Name of the object. |
|``options`` | _SelectObjectReader_ | Query Options |
|``options`` | _SelectObjectOptions_ | Query Options |


__Return Value__
Expand Down Expand Up @@ -720,7 +720,7 @@ options = SelectObjectOptions(
QuoteEscapeCharacter='"',)
),
request_progress=RequestProgress(
enabled="FLASE"
enabled="FALSE"
)
)

Expand Down

0 comments on commit 4edf6c6

Please sign in to comment.