Skip to content

Commit

Permalink
Edited javadoc.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexfacciorusso committed Aug 4, 2015
1 parent 63f8ef2 commit 53bdf06
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions library/src/main/java/com/alexfacciorusso/urc/Urc.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ public static Urc with(String baseUrl) {
* The path syntax is taken from Slim framework, so it is in the form of {@code '/static/:argument' } .
* </p>
*
* <h3>Example:</h3>
* <b>Example:</b>
* <pre>
* Urc google = Urc.with("https://google.com");
*
* google.fromEndpoint("/:firstArgument/try/:second")
* .addParameter("firstArgument", 1)
* .addParameter("second", 2)
* .build();
* Urc myApi = Urc.with("https://my-api.com/v1");
* myApi.fromEndpoint("/:firstArgument/try/:second")
* .addParameter("firstArgument", "first")
* .addParameter("second", 2)
* .addParameter("noListed", "hello")
* .build();
* </pre>
*
* The result url will be: {@code https://google.com/1/try/2 }
Expand Down

0 comments on commit 53bdf06

Please # to comment.