-
Notifications
You must be signed in to change notification settings - Fork 41.6k
Polish README #26320
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Polish README #26320
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -32,25 +32,25 @@ Here is a quick teaser of a complete Spring Boot application in Java: | |
| @SpringBootApplication | ||
| public class Example { | ||
|
|
||
| @RequestMapping("/") | ||
| String home() { | ||
| return "Hello World!"; | ||
| } | ||
| @RequestMapping("/") | ||
| String home() { | ||
| return "Hello World!"; | ||
| } | ||
|
|
||
| public static void main(String[] args) { | ||
| SpringApplication.run(Example.class, args); | ||
| } | ||
| public static void main(String[] args) { | ||
| SpringApplication.run(Example.class, args); | ||
| } | ||
|
|
||
| } | ||
| ---- | ||
|
|
||
|
|
||
|
|
||
| == Getting help | ||
| == Getting Help | ||
| Are you having trouble with Spring Boot? We want to help! | ||
|
|
||
| * Check the {docs}/html/[reference documentation], especially the {docs}/html/howto.html#howto[How-to's] -- they provide solutions to the most common questions. | ||
| * Learn the Spring basics -- Spring Boot builds on many other Spring projects; check the https://spring.io[spring.io] web-site for a wealth of reference documentation. | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think this should be
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. So to be consistent, change the single ‘-‘ to double for line 56?
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes please. |
||
| * Check the {docs}/html/[reference documentation], especially the {docs}/html/howto.html#howto[How-to's] - they provide solutions to the most common questions. | ||
| * Learn the Spring basics - Spring Boot builds on many other Spring projects; check the https://spring.io[spring.io] web-site for a wealth of reference documentation. | ||
| If you are new to Spring, try one of the https://spring.io/guides[guides]. | ||
| * If you are upgrading, read the {github}/wiki[release notes] for upgrade instructions and "new and noteworthy" features. | ||
| * Ask a question - we monitor https://stackoverflow.com[stackoverflow.com] for questions tagged with https://stackoverflow.com/tags/spring-boot[`spring-boot`]. | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We prefer tabs as they're more accessible.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, I see.