From 529336395eb359884ea2f234067f592ef50e7084 Mon Sep 17 00:00:00 2001 From: Edulop139 <31073454+Edulop139@users.noreply.github.com> Date: Fri, 21 Dec 2018 07:16:40 -0500 Subject: [PATCH] small grammer fix (#26202) small fix from lets to let's --- guide/english/java/abstract-class/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/java/abstract-class/index.md b/guide/english/java/abstract-class/index.md index 6aea4a659c..8a1fda9ae5 100644 --- a/guide/english/java/abstract-class/index.md +++ b/guide/english/java/abstract-class/index.md @@ -2,7 +2,7 @@ title: Abstract Classes in Java --- -Lets discuss abstract classes. Before diving into this tutorial it is better that you have understood concepts of classes +Let's discuss abstract classes. Before diving into this tutorial it is better that you have understood concepts of classes and inheritance. Abstract classes are classes that can be subclassed (i.e. extended) but cannot be instantiated. You can think of them as a **class version** of interfaces, or as an interface with actual code attached to the methods.