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.