Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
crazzyghost committed Jan 12, 2021
1 parent 0dc7fb9 commit c93aded
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ When you are okay with setting the parameters call the `fetch()` method. Simple!
.onFailure({ e-> hanldeFailure(e) })
.fetch()

You can also use the sychronous fetch method by calling the `fetchSync()` method without callback handlers.
You can also use the synchronous fetch method by calling the `fetchSync()` method without callback handlers.

=== "Java"
:::java
Expand All @@ -228,7 +228,7 @@ You can also use the sychronous fetch method by calling the `fetchSync()` method
.forSymbol("IBM")
.interval(Interval.FIVE_MIN)
.outputSize(OutputSize.FULL)
.fetch();
.fetchSync();

=== "Kotlin"
:::java
Expand All @@ -238,7 +238,7 @@ You can also use the sychronous fetch method by calling the `fetchSync()` method
.forSymbol("IBM")
.interval(Interval.FIVE_MIN)
.outputSize(OutputSize.FULL)
.fetch()
.fetchSync()

## Releases

Expand Down
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ copyright: 'Copyright © 2019 S. M. Sefa-Yeboah'

nav:
- Overview: index.md
- "v1.4.0 API":
- "v1.5.0 API":
- alphavantage: api/alphavantage/index.md
- crypto: api/crypto/index.md
- exchangerate: api/exchangerate/index.md
Expand Down

0 comments on commit c93aded

Please sign in to comment.