Fix typos and change some grammatical constructions

This commit is contained in:
daniel.motzko
2021-07-02 13:54:18 +02:00
parent ea00db0ac6
commit 51c8a54795
54 changed files with 185 additions and 152 deletions

View File

@@ -2,12 +2,11 @@
title: "Graal Native Image"
ring: trial
quadrant: tools
---
Native Image is a technology to ahead-of-time compile Java code to a standalone executable, called a native image. In the process
of building a native image all library dependencies, including those from the JDK will be packed in the native image.
The application created as a native image can be run without a JDK. The natively compiled applications require generally
less memory and have shorter start up times.
Native Image is a technology to ahead-of-time compile Java code to a standalone executable, called a native image.
In the process of building a native image all library dependencies, including those from the JDK will be packed in the native image.
The application created as a native image can be run without a JDK.
The natively compiled applications require generally less memory and have shorter start up times.
We at AOE have already running microservices written in Scala with Graal Native Image.