From 9b48a85c614524f351ae9edd60b228b750b4d672 Mon Sep 17 00:00:00 2001 From: Claus Ibsen Date: Thu, 13 Aug 2020 17:12:07 +0200 Subject: [PATCH] Fix #1662 ascii doc warning about go source snippet --- docs/modules/ROOT/pages/architecture/operator.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/modules/ROOT/pages/architecture/operator.adoc b/docs/modules/ROOT/pages/architecture/operator.adoc index f641415654..541edb49cf 100644 --- a/docs/modules/ROOT/pages/architecture/operator.adoc +++ b/docs/modules/ROOT/pages/architecture/operator.adoc @@ -33,7 +33,7 @@ image::architecture/camel-k-state-machine-basic.png[State Machine] Each state of the CR is handled by a dedicated handler, named `Action`, defined as follow: -[code,go] +[source,go] ---- type Action interface { CanHandle(cr *v1.CR) bool // <1>