Skip to content
This repository was archived by the owner on Dec 12, 2023. It is now read-only.

Commit e146498

Browse files
committed
Fix spelling of “entirely” in brackets problem
1 parent 16f058d commit e146498

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

problems/balanced-brackets/Readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Balanced Brackets
22

3-
Write a function that accepts a string consisting entiring of brackets (`[](){}`) and returns whether it is balanced. Every "opening" bracket must be followed by a closing bracket of the same type. There can also be nested brackets, which adhere to the same rule.
3+
Write a function that accepts a string consisting entirely of brackets (`[](){}`) and returns whether it is balanced. Every "opening" bracket must be followed by a closing bracket of the same type. There can also be nested brackets, which adhere to the same rule.
44

55
```js
66
f('()[]{}(([])){[()][]}') // true

0 commit comments

Comments
 (0)