From 5c8be6373da2561f5ca58a65d25c6dfacf371f05 Mon Sep 17 00:00:00 2001 From: jrosendo Date: Thu, 10 Nov 2022 13:04:35 +0000 Subject: [PATCH] docs(issamestring): fix typo --- subjects/issamestring/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subjects/issamestring/README.md b/subjects/issamestring/README.md index f3b7b46c..415655a0 100644 --- a/subjects/issamestring/README.md +++ b/subjects/issamestring/README.md @@ -16,7 +16,7 @@ func IsSameString(s1, s2 string) bool { ### Usage -Here is a possible program to test your function : +Here is a possible program to test your function: ```go package main @@ -33,7 +33,7 @@ func main() { } ``` -And its output : +And its output: ```console $ go run .