Skip to content

Commit

Permalink
Update SpringApplicationBuilder javadoc to reflect API changes
Browse files Browse the repository at this point in the history
  • Loading branch information
wilkinsona committed Dec 13, 2016
1 parent 4ec95b8 commit 14a90aa
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@
* new SpringApplicationBuilder(ParentConfig.class).child(ChildConfig.class).run(args);
* </pre>
*
* Another common use case is setting default arguments, e.g. active Spring profiles, to
* set up the environment for an application:
* Another common use case is setting active profiles and default properties to set up the
* environment for an application:
*
* <pre class="code">
* new SpringApplicationBuilder(Application.class).profiles(&quot;server&quot;)
* .defaultArgs(&quot;--transport=local&quot;).run(args);
* .properties(&quot;transport=local&quot;).run(args);
* </pre>
*
* <p>
Expand Down

0 comments on commit 14a90aa

Please sign in to comment.