From 938ed336e0945f7309e2ce78c145232696f694d9 Mon Sep 17 00:00:00 2001 From: heavyslobs <44413585+heavyslobs@users.noreply.github.com> Date: Fri, 15 Mar 2019 19:58:27 +0100 Subject: [PATCH] Making the description gender neutral (#28152) --- guide/english/java/abstract-class/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guide/english/java/abstract-class/index.md b/guide/english/java/abstract-class/index.md index 8a1fda9ae5..af26fd0449 100644 --- a/guide/english/java/abstract-class/index.md +++ b/guide/english/java/abstract-class/index.md @@ -46,7 +46,7 @@ Car carObj = new Car(); // valid Motorcycle mBikeObj = new Motorcycle(); // valid ``` -If the child class doesn't implement the abstract methods of the father, it becomes an abstract class. +If the child class doesn't implement the abstract methods of the parent, it becomes an abstract class. #### More Information -- [Oracle Java Docs - Abstract Classes](https://docs.oracle.com/javase/specs/jls/se7/html/jls-8.html#jls-8.1.1.1) +- [Oracle Java Docs - Abstract Classes](https://docs.oracle.com/javase/specs/jls/se7/html/jls-8.html#jls-8.1.1.1) \ No newline at end of file