Fix typos and remove extra spaces.

This commit is contained in:
Chris Laprun
2019-03-08 22:38:37 +01:00
parent fd5d634dd8
commit b302d739bf
2 changed files with 4 additions and 4 deletions

View File

@@ -45,7 +45,7 @@ Be sure to test your pull request in:
1. Java mode
2. Native mode
## Setup
## Setup
If you have not done so on this machine, you need to:
@@ -92,7 +92,7 @@ Select _Use the Eclipse Code Formatter_, then change the _Eclipse Java Formatter
`eclipse-formatter.xml` file in the `ide-config` directory. Make sure the _Optimize Imports_ box is ticked, and
select the `eclipse.importorder` file as the import order config file.
## Build
* Clone the repository: `git clone https://github.com/jbossas/quarkus.git`

View File

@@ -23,10 +23,10 @@ import com.oracle.svm.core.annotate.TargetClass;
import io.quarkus.runtime.Quarkus;
/**
* class that avoids the use of reflection in Quarkus when actually running
* Class that avoids the use of reflection in Quarkus when actually running
* on Graal.
* <p>
* Graal does not seem to like registering the program entry point as availble for reflection
* Graal does not seem to like registering the program entry point as available for reflection
*/
@TargetClass(Quarkus.class)
final class QuarkusReplacement {