diff --git a/data/tutorials/language/1ds_01_arrays.md b/data/tutorials/language/1ds_01_arrays.md index 29864053d7..a36f442668 100644 --- a/data/tutorials/language/1ds_01_arrays.md +++ b/data/tutorials/language/1ds_01_arrays.md @@ -31,7 +31,7 @@ To create an array in OCaml, you can use the `[| ...; ... |]` syntax, which allo - : int array = [|1; 2; 3; 4; 5|] ``` -Alternatively, you can create an array using the `Array.make` function, which takes two arguments: the length of the array and the initial value of each element. For example, to create an array of length 5 with all elements initialized to 0, you can write: +Alternatively, you can create an array using the `Array.make` function, which takes two arguments: the length of the array and the initial value of each element. For example, to create an array of length 5 with all elements initialised to 0, you can write: ```ocaml # let zeroes = Array.make 5 0;;