diff --git a/strategy/src/main/java/com/iluwatar/strategy/App.java b/strategy/src/main/java/com/iluwatar/strategy/App.java index 992514801b6b665318a452f07a8d2269690880be..b88eae242755cdf8ef51e0a655476f517dddce67 100644 --- a/strategy/src/main/java/com/iluwatar/strategy/App.java +++ b/strategy/src/main/java/com/iluwatar/strategy/App.java @@ -2,7 +2,10 @@ package com.iluwatar.strategy; /** * - * Strategy ({@link DragonSlayingStrategy}) encapsulates an algorithm. The containing + * The Strategy pattern (also known as the policy pattern) is a software design pattern that + * enables an algorithm's behavior to be selected at runtime. + *

+ * In this example ({@link DragonSlayingStrategy}) encapsulates an algorithm. The containing * object ({@link DragonSlayer}) can alter its behavior by changing its strategy. * */