This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-k.git
The following commit(s) were added to refs/heads/master by this push:
new 9b48a85 Fix #1662 ascii doc warning about go source snippet
9b48a85 is described below
commit 9b48a85c614524f351ae9edd60b228b750b4d672
Author: Claus Ibsen <[email protected]>
AuthorDate: Thu Aug 13 17:12:07 2020 +0200
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 f641415..541edb4 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>