diff --git a/.github/actions/install-otlp-collector/action.yml b/.github/actions/install-otlp-collector/action.yml index b163104579..c618df6640 100644 --- a/.github/actions/install-otlp-collector/action.yml +++ b/.github/actions/install-otlp-collector/action.yml @@ -41,7 +41,7 @@ runs: name: otlp EOF - # Add collector configuration : basic otlp grpc reciever to logging + # Add collector configuration : basic otlp grpc receiver to logging cat < -

ErrorHandler is an optional handler called upon an error occuring in the integration

+

ErrorHandler is an optional handler called upon an error occurring in the integration

@@ -6286,7 +6286,7 @@ ErrorHandlerSpec -

ErrorHandler is an optional handler called upon an error occuring in the integration

+

ErrorHandler is an optional handler called upon an error occurring in the integration

diff --git a/docs/modules/traits/pages/telemetry.adoc b/docs/modules/traits/pages/telemetry.adoc index 44f54204e7..a2e86f2cde 100644 --- a/docs/modules/traits/pages/telemetry.adoc +++ b/docs/modules/traits/pages/telemetry.adoc @@ -68,7 +68,7 @@ The following configuration options are available: [source,console] $ kamel run -t telemetry.enable=true ... -* To define a specific deployed OTLP gRPC reciever: +* To define a specific deployed OTLP gRPC receiver: + [source,console] $ kamel run -t telemetry.enable=true -t telemetry.endpoint=http://instance-collector:4317 ... diff --git a/pkg/util/uri/uri_test.go b/pkg/util/uri/uri_test.go index 49ecb0c2dc..a4f79ba2c3 100644 --- a/pkg/util/uri/uri_test.go +++ b/pkg/util/uri/uri_test.go @@ -149,7 +149,7 @@ func TestCamelURIFormat(t *testing.T) { invalid bool }{ { - uri: "knative:channnel", + uri: "knative:channel", }, { uri: "atomix-value:", diff --git a/proposals/service-binding.adoc b/proposals/service-binding.adoc index d2a166b4ed..e7ad39d979 100644 --- a/proposals/service-binding.adoc +++ b/proposals/service-binding.adoc @@ -34,14 +34,14 @@ Users should be able to connect to a _Provisioned Service_ by specifying one or [source,console] ---- -$ kamel run intergration --connect database,broker +$ kamel run integration --connect database,broker ---- The _Service Binding_ could be referenced by name like shown above, in which case the _Service Binding_ already exists, or it could be created and managed by Camel K in which case the user would have to explicitly specify the _Provisioned Service_ they want to connect to: [source,console] ---- -$ kamel run intergration --connect Database.v1alpha1.postgresql.baiju.dev/db-demo +$ kamel run integration --connect Database.v1alpha1.postgresql.baiju.dev/db-demo ---- The user may then reference the binding properties inside the integration just like any other properties.