From 35699a9cc32ef7109a4a23e94adf33c28b87a443 Mon Sep 17 00:00:00 2001 From: manuel-fernandez-rodriguez <48520205+manuel-fernandez-rodriguez@users.noreply.github.com> Date: Mon, 16 Dec 2024 13:53:45 +0100 Subject: [PATCH] Fix small typo in documentation (#29) --- docs/docs/registerly/getting-started/attributes.md | 2 +- docs/docs/registerly/getting-started/class-selection.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/registerly/getting-started/attributes.md b/docs/docs/registerly/getting-started/attributes.md index 07e0592..2bb6ec2 100644 --- a/docs/docs/registerly/getting-started/attributes.md +++ b/docs/docs/registerly/getting-started/attributes.md @@ -15,7 +15,7 @@ Implemented by this class: ```csharp public class GreeterService : IGreeterService { - public string Greet() => "Hello, World!" + public string Greet() => "Hello, World!"; } ``` diff --git a/docs/docs/registerly/getting-started/class-selection.md b/docs/docs/registerly/getting-started/class-selection.md index 7ca177a..518b572 100644 --- a/docs/docs/registerly/getting-started/class-selection.md +++ b/docs/docs/registerly/getting-started/class-selection.md @@ -15,7 +15,7 @@ Implemented by this class: ```csharp public class GreeterService : IGreeterService { - public string Greet() => "Hello, World!" + public string Greet() => "Hello, World!"; } ```