Review of the Appendix

This commit reviews the Appendix of the Spring boot
doc, fixing mostly typos.
This commit is contained in:
Stephane Nicoll
2014-03-18 09:57:06 -07:00
committed by Phillip Webb
parent e23bcdbe29
commit 7813726e29
3 changed files with 42 additions and 42 deletions

View File

@@ -150,12 +150,12 @@ setting an environment variable `LOADER_PATH` or `loader.path` in `application.p
[[executable-jar-launcher-manifest]]
==== Launcher manifest
You need specify an appropriate `Launcher` as the `Main-Class` attribute of
You need to specify an appropriate `Launcher` as the `Main-Class` attribute of
`META-INF/MANIFEST.MF`. The actual class that you want to launch (i.e. the class that
you wrote that contains a `main` method) should be specified in the `Start-Class`
attribute.
For example, here is a typical `MANIFEST.MF` for a executable jar file:
For example, here is a typical `MANIFEST.MF` for an executable jar file:
[indent=0]
----