From 53d6c854a14f3e0f2677890afa454a7a1f7015b5 Mon Sep 17 00:00:00 2001 From: StephenVavasis Date: Mon, 28 May 2018 01:23:32 -0400 Subject: [PATCH] fix typo regarding eltype (#27280) --- doc/src/manual/interfaces.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/src/manual/interfaces.md b/doc/src/manual/interfaces.md index 8d4810f83e3c7..9713662bacf86 100644 --- a/doc/src/manual/interfaces.md +++ b/doc/src/manual/interfaces.md @@ -14,7 +14,7 @@ to generically build upon those behaviors. | **Important optional methods** | **Default definition** | **Brief description** | | `IteratorSize(IterType)` | `HasLength()` | One of `HasLength()`, `HasShape{N}()`, `IsInfinite()`, or `SizeUnknown()` as appropriate | | `IteratorEltype(IterType)` | `HasEltype()` | Either `EltypeUnknown()` or `HasEltype()` as appropriate | -| `eltype(IterType)` | `Any` | The type of the items returned by `next()` | +| `eltype(IterType)` | `Any` | The type of the first entry of the tuple returned by `iterate()` | | `length(iter)` | (*undefined*) | The number of items, if known | | `size(iter, [dim...])` | (*undefined*) | The number of items in each dimension, if known |