From ff3175845f27864c38961f518040bb7e143822b2 Mon Sep 17 00:00:00 2001 From: deliaphan <44330687+deliaphan@users.noreply.github.com> Date: Thu, 1 Nov 2018 13:34:40 +0800 Subject: [PATCH] fix typo error (#24882) "guaranteed" instead o "guranteed" --- guide/english/java/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/java/index.md b/guide/english/java/index.md index 06b3191c0fd..18fcc3ea405 100644 --- a/guide/english/java/index.md +++ b/guide/english/java/index.md @@ -83,7 +83,7 @@ Ok now since we are done with the installations, let's begin to understand first 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. -Also, once your bytecode is compiled it can run on any Java VM. This Virtual Machine is machine dependent, i.e it has different implementations for Windows, Linux and Mac. But your program is guranteed to run in any system thanks to this VM. This philosophy is called "Write Once, Run Anywhere". +Also, once your bytecode is compiled it can run on any Java VM. This Virtual Machine is machine dependent, i.e it has different implementations for Windows, Linux and Mac. But your program is guaranteed to run in any system thanks to this VM. This philosophy is called "Write Once, Run Anywhere". ## Hello World!