Update App.java (#1098)

This commit is contained in:
Dominik Gruntz 2019-11-18 18:18:46 +01:00 committed by Ilkka Seppälä
parent 7e4d0b4cdc
commit d4b2496e60

View File

@ -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.
*
* <p>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}.
*/