Skip to content

Commit

Permalink
Merge pull request #3708 from mswiderski/rest-client-guide-fix
Browse files Browse the repository at this point in the history
fixed typo in rest client guide - javax.inject.Singleton
  • Loading branch information
stuartwdouglas authored Aug 27, 2019
2 parents 9430e89 + 824c5cd commit f72da1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/main/asciidoc/rest-client-guide.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ The name of the property needs to follow a certain convention which is best disp
----
# Your configuration properties
org.acme.restclient.CountriesService/mp-rest/url=https://restcountries.eu/rest # // <1>
org.acme.restclient.CountriesService/mp-rest/scope=java.inject.Singleton # // <2>
org.acme.restclient.CountriesService/mp-rest/scope=javax.inject.Singleton # // <2>
----

<1> Having this configuration means that all requests performed using `org.acme.restclient.CountriesService` will use `https://restcountries.eu/rest` as the base URL.
Expand Down

0 comments on commit f72da1a

Please sign in to comment.