From 0908338616c632b220ec3f946164cf55024aeea3 Mon Sep 17 00:00:00 2001 From: John David Pressman Date: Tue, 26 Nov 2019 05:40:41 -0800 Subject: [PATCH] Remove 'imperative' from phrase 'imperative iteration' --- gitlab-pages/docs/language-basics/maps-records.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitlab-pages/docs/language-basics/maps-records.md b/gitlab-pages/docs/language-basics/maps-records.md index 64b44c2e5..7b8471290 100644 --- a/gitlab-pages/docs/language-basics/maps-records.md +++ b/gitlab-pages/docs/language-basics/maps-records.md @@ -91,7 +91,7 @@ let balance: tez = Map.find ("tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN": address) le ### Iteration over the contents of a map There are three kinds of iteration on LIGO maps, `iter`, `map` and `fold`. `iter` -is an imperative iteration over the map with no return value, its only use is to +is an iteration over the map with no return value, its only use is to generate side effects. This can be useful if for example you would like to check that each value inside of a map is within a certain range, with an error thrown otherwise.