From 131c8873236aa2a27d279febb5081b9d9a626083 Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Sun, 12 Jan 2025 17:33:33 +0900 Subject: [PATCH] docs: update 1.0-introduction.md begining -> beginning --- 1.-pattern-sliding-window/1.0-introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1.-pattern-sliding-window/1.0-introduction.md b/1.-pattern-sliding-window/1.0-introduction.md index 76af1ea..e2a0ee1 100644 --- a/1.-pattern-sliding-window/1.0-introduction.md +++ b/1.-pattern-sliding-window/1.0-introduction.md @@ -106,7 +106,7 @@ public class Solution { //the length of the substring which match the target string. int len = Integer.MAX_VALUE; - //loop at the begining of the source string + //loop at the beginning of the source string while(end < s.length()){ char c = s.charAt(end);//get a character