From cc43a628d78824dc10bcf131d1eb2c4c4c39296e Mon Sep 17 00:00:00 2001 From: Nickolay Demin Date: Fri, 29 May 2026 23:43:39 +0700 Subject: [PATCH] docs(readme): fix namespace references Update using statements in code examples to use the correct namespaces --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c12c1d4..1b34246 100644 --- a/README.md +++ b/README.md @@ -113,8 +113,8 @@ dotnet add package QRCoder.Core Generate your first QR code with just a few lines of code: ```csharp -using QRCoder.Core; -using SkiaSharp; +using QRCoder.Core.Generators; +using QRCoder.Core.Renderers; // Create the QR Code generator using var generator = new QRCodeGenerator(); @@ -163,7 +163,7 @@ string psString = ps.GetGraphic(5); ### Payload Examples ```csharp -using QRCoder.Core; +using QRCoder.Core.Generators; // Wi-Fi QR Code var wifiPayload = new PayloadGenerator.WiFi("MyNetwork", "MyPassword",