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