diff --git a/README.md b/README.md index 6dfb0a2..5a20351 100644 --- a/README.md +++ b/README.md @@ -1293,15 +1293,15 @@ interface Config { } ``` -Case of Array, you can create a read-only array by using `ReadonlyArray`. -do not allow changes such as `push()` and `fill()`, but can use features such as `concat()` and `slice()` that do not change the value. +For arrays, you can create a read-only array by using `ReadonlyArray`. +It doesn't allow changes such as `push()` and `fill()`, but can use features such as `concat()` and `slice()` that do not change the array's value. **Bad:** ```ts const array: number[] = [ 1, 3, 5 ]; array = []; // error -array.push(100); // array will updated +array.push(100); // array will be updated ``` **Good:**