From 657274aaef5237f5388291a9ff9337104b156b79 Mon Sep 17 00:00:00 2001 From: Jonathan Mezach Date: Thu, 18 Apr 2024 09:55:27 +0200 Subject: [PATCH] docs: fix example code in readme MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit While working through the README.md I got a compile error caused by this invalid using, so I thought I'd fix the docs for this. Co-authored-by: Christoph Bühler --- src/KubeOps.Operator/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/KubeOps.Operator/README.md b/src/KubeOps.Operator/README.md index a52d7373..672fa5ed 100644 --- a/src/KubeOps.Operator/README.md +++ b/src/KubeOps.Operator/README.md @@ -28,7 +28,7 @@ However, for a plain operator without webhooks, no ASP.net is required (in contrast to v7). ```csharp -using KubeOps.Operator.Extensions; +using KubeOps.Operator; using Microsoft.Extensions.Hosting; using Microsoft.Extensions.Logging;