diff --git a/documentation/index.html b/documentation/index.html
index 96e02dd..9314f81 100644
--- a/documentation/index.html
+++ b/documentation/index.html
@@ -491,7 +491,7 @@ The main class of your plugin extends BasePlugin
and implements its
public class ExamplePlugin : BasePlugin() {
override val name = "kobalt-example-plugin"
- override fun apply(project: Project) {
+ override fun apply(project: Project, context: KobaltContext) {
println("Applying plugin ${name} with project ${project}")
}
}
diff --git a/plug-in/index.html b/plug-in/index.html
index 26ac17a..f6f2c09 100644
--- a/plug-in/index.html
+++ b/plug-in/index.html
@@ -129,7 +129,7 @@ import com.beust.kobalt.api.*
public class Main : BasePlugin() {
override val name = "kobalt-line-count"
- override fun apply(project: Project) {
+ override fun apply(project: Project, context: KobaltContext) {
println("*** Applying plugin ${name} with project ${project}")
}
}