From ed601af6d8fd2615fae08b183b1db08c753391d2 Mon Sep 17 00:00:00 2001 From: Straighter <32710436+Stra1ghter@users.noreply.github.com> Date: Fri, 12 Apr 2019 19:04:22 +0200 Subject: [PATCH] Fixed typo (#29790) --- guide/english/java/throw-keyword/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/java/throw-keyword/index.md b/guide/english/java/throw-keyword/index.md index fbc03f53ac..8ac1368543 100644 --- a/guide/english/java/throw-keyword/index.md +++ b/guide/english/java/throw-keyword/index.md @@ -3,7 +3,7 @@ title: Throw --- ## throw -The Java throw keyword is used to explicitly throw an exception.You can throw either checked or uncheked exception in java by throw keyword. The throw keyword is mainly used to throw custom exception. +The Java throw keyword is used to explicitly throw an exception. You can throw either checked or unchecked exception in java. ***Example:*** ```java