small grammer fix (#26202)

small fix from lets to let's
This commit is contained in:
Edulop139
2018-12-21 07:16:40 -05:00
committed by Manish Giri
parent 94396af89b
commit 529336395e

View File

@ -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.