Callback pattern description amendment

This commit is contained in:
vehpsr 2015-03-27 11:13:29 +02:00
parent eee2160435
commit 9312059f19

View File

@ -1,7 +1,7 @@
package com.iluwatar; package com.iluwatar;
/** /**
* Callback pattern is more native for dynamic languages where function are first-class citizen. * Callback pattern is more native for functional languages where function is treated as first-class citizen.
* Prior to Java8 can be simulated using simple (alike command) interfaces. * Prior to Java8 can be simulated using simple (alike command) interfaces.
*/ */
public class App { public class App {