From 16a718e8d02370c20d440c0ddcc79593f6c493a3 Mon Sep 17 00:00:00 2001 From: ckant787 <43432817+ckant787@users.noreply.github.com> Date: Mon, 15 Oct 2018 14:22:26 +0530 Subject: [PATCH 1/3] Update arrays.md --- doc/src/manual/arrays.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/src/manual/arrays.md b/doc/src/manual/arrays.md index 6119c49153a65..2d9cfce78a53a 100644 --- a/doc/src/manual/arrays.md +++ b/doc/src/manual/arrays.md @@ -801,7 +801,7 @@ elements are stored contiguously in column-major order (see additional notes in [Performance Tips](@ref man-performance-tips)). The [`Array`](@ref) type is a specific instance of `DenseArray`; [`Vector`](@ref) and [`Matrix`](@ref) are aliases for the 1-d and 2-d cases. Very few operations are implemented specifically for `Array` beyond those that are required -for all `AbstractArrays`s; much of the array library is implemented in a generic +for all `AbstractArrays`; much of the array library is implemented in a generic manner that allows all custom arrays to behave similarly. `SubArray` is a specialization of `AbstractArray` that performs indexing by From 1faa4ac60355068fdd6e0f5beb8910b6053762d6 Mon Sep 17 00:00:00 2001 From: Fredrik Ekre <fredrik.ekre@chalmers.se> Date: Mon, 15 Oct 2018 10:59:22 +0200 Subject: [PATCH 2/3] update --- doc/src/manual/arrays.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/src/manual/arrays.md b/doc/src/manual/arrays.md index 2d9cfce78a53a..ff9b8031be5d7 100644 --- a/doc/src/manual/arrays.md +++ b/doc/src/manual/arrays.md @@ -801,7 +801,7 @@ elements are stored contiguously in column-major order (see additional notes in [Performance Tips](@ref man-performance-tips)). The [`Array`](@ref) type is a specific instance of `DenseArray`; [`Vector`](@ref) and [`Matrix`](@ref) are aliases for the 1-d and 2-d cases. Very few operations are implemented specifically for `Array` beyond those that are required -for all `AbstractArrays`; much of the array library is implemented in a generic +for all `AbstractArray`s; much of the array library is implemented in a generic manner that allows all custom arrays to behave similarly. `SubArray` is a specialization of `AbstractArray` that performs indexing by From 5e8c87ffca3b5cfe6341b7097a7c0616620b729a Mon Sep 17 00:00:00 2001 From: ckant787 <43432817+ckant787@users.noreply.github.com> Date: Mon, 22 Oct 2018 21:14:58 +0530 Subject: [PATCH 3/3] Update base.md --- doc/src/base/base.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/src/base/base.md b/doc/src/base/base.md index 0567e934a5944..68c5ffed90c21 100644 --- a/doc/src/base/base.md +++ b/doc/src/base/base.md @@ -49,7 +49,7 @@ The following two-word sequences are reserved: However, you can create variables with names: `abstract`, `mutable`, `primitive` and `type`. -Finally `where` is parsed as an infix operator for writing parametric method +Finally,`where` is parsed as an infix operator for writing parametric method and type definitions. Also `in` and `isa` are parsed as infix operators. Creation of a variable named `where`, `in` or `isa` is allowed though.