Skip to content

Commit 59c98a0

Browse files
authored
[Circular Buffer Approaches]: Update introduction.md ln 41 (#3657)
Corrected the tense mismatch on line 41. 😄
1 parent efc33f4 commit 59c98a0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

exercises/practice/circular-buffer/.approaches/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Code for these error handling scenarios is always quite similar, so for brevity
3838
Python has an exceptionally flexible and widely-used `list` type.
3939
Most submitted solutions to `Circular Buffer` are based on this data type.
4040

41-
A less versatile variants include [`bytearray`][bytearray] and [`array.array`][array.array].
41+
Less versatile variants include [`bytearray`][bytearray] and [`array.array`][array.array].
4242

4343
`bytearray`s are similar to `list`s in many ways, but they are limited to holding only bytes (_represented as integers in the range `0 <= n < 256`_).
4444

0 commit comments

Comments
 (0)