From d4b2496e60c7d81a9e18a059cd629a190e490d15 Mon Sep 17 00:00:00 2001 From: Dominik Gruntz Date: Mon, 18 Nov 2019 18:18:46 +0100 Subject: [PATCH] Update App.java (#1098) --- twin/src/main/java/com/iluwatar/twin/App.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/twin/src/main/java/com/iluwatar/twin/App.java b/twin/src/main/java/com/iluwatar/twin/App.java index 5789d163a..ccd91f6e0 100644 --- a/twin/src/main/java/com/iluwatar/twin/App.java +++ b/twin/src/main/java/com/iluwatar/twin/App.java @@ -25,10 +25,10 @@ package com.iluwatar.twin; /** * Twin pattern is a design pattern which provides a standard solution to simulate multiple - * inheritance in java. + * inheritance in Java. * *

In this example, the essence of the Twin pattern is the {@link BallItem} class and {@link - * BallThread} class represent the twin objects to coordinate with each other(via the twin + * BallThread} class represent the twin objects to coordinate with each other (via the twin * reference) like a single class inheriting from {@link GameItem} and {@link Thread}. */