Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ public abstract static class Builder {
* Number indicating the posted speed limit.
*
* @param speed indicating the posted speed limit
* @return a {@link Builder} object
* @since 3.0.0
*/
public abstract Builder speed(@Nullable Integer speed);
Expand All @@ -120,6 +121,7 @@ public abstract static class Builder {
* String indicating the unit of speed, either as `km/h` or `mph`.
*
* @param unit either as `km/h` or `mph`
* @return a {@link Builder} object
* @since 3.0.0
*/
public abstract Builder unit(@Nullable String unit);
Expand All @@ -128,6 +130,7 @@ public abstract static class Builder {
* Boolean is true if the speed limit is not known, otherwise null.
*
* @param unknown true if speed limit is not known, otherwise null
* @return a {@link Builder} object
* @since 3.0.0
*/
public abstract Builder unknown(@Nullable Boolean unknown);
Expand All @@ -136,6 +139,7 @@ public abstract static class Builder {
* Boolean is `true` if the speed limit is unlimited, otherwise null.
*
* @param none true if speed limit is unlimited, otherwise null
* @return a {@link Builder} object
* @since 3.0.0
*/
public abstract Builder none(@Nullable Boolean none);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import retrofit2.Call;

/**
* The Speech API is a text-to-speech APi with a server-side caching layer in front of AWS Polly.
* The Speech API is a text-to-speech API with a server-side caching layer in front of AWS Polly.
* The only requirements are text to dictate, and a Mapbox access token. For 3-step-ahead
* client-side caching, cache directory is required.
*
Expand Down