From f366b32d92130b1a20958d2d9855fe31029885b2 Mon Sep 17 00:00:00 2001
From: Rodrigo Araujo <42783261+RodrigoAra@users.noreply.github.com>
Date: Thu, 21 Feb 2019 03:10:57 -0500
Subject: [PATCH] Changed wording (#33085)
---
guide/english/java/index.md | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/guide/english/java/index.md b/guide/english/java/index.md
index ee4e6e3109..d5ad161695 100644
--- a/guide/english/java/index.md
+++ b/guide/english/java/index.md
@@ -84,7 +84,8 @@ Verify Java has been properly installed in your system by opening Command Prompt
## JVM
-Ok now since we are done with the installations, let's begin to understand first the nitty gritty of the Java ecosystem. Java is an interpreted and compiled language, that is the code we write gets compiled to bytecode and interpreted to run. We write the code in .java files, Java compiles them into bytecodes which are run on a Java Virtual Machine or JVM for execution. These bytecodes typically have a .class extension.
+
+After finishing the installation, we can begin to understand the nitty gritty of the Java ecosystem. Java is an interpreted and compiled language, that is the code we write gets compiled to bytecode and interpreted to run. We write the code in .java files, Java compiles them into bytecodes which are run on a Java Virtual Machine or JVM for execution. These bytecodes typically has a .class extension.
Java is a pretty secure language as it doesn't let your program run directly on the machine. Instead, your program runs on a Virtual Machine called JVM. This Virtual Machine exposes several APIs for low level machine interactions you can make, but other than that you cannot play with machine instructions explicitely. This adds a huge bonus of security.