diff --git a/packages/website/content/blog/fundamentals-v4/07-interfaces-and-type-aliases/index.md b/packages/website/content/blog/fundamentals-v4/07-interfaces-and-type-aliases/index.md index 20f41dd96..7b8dda0c4 100644 --- a/packages/website/content/blog/fundamentals-v4/07-interfaces-and-type-aliases/index.md +++ b/packages/website/content/blog/fundamentals-v4/07-interfaces-and-type-aliases/index.md @@ -453,7 +453,7 @@ perfectly fine, however... For example, consider infinitely nestable arrays of numbers ```ts -;[3, 4, [5, 6, [7], 59], 221] +[3, 4, [5, 6, [7], 59], 221] ``` You may read or see things that indicate you must use a combination of `interface` and `type`