diff Notes.md @ 1347:08f06bfacd5c refactor/grids

Fix typos and formatting of documentation
author Vidar Stiernström <vidar.stiernstrom@it.uu.se>
date Thu, 18 May 2023 22:53:31 +0200
parents c2012db881cb
children 4684c7f1c4cb
line wrap: on
line diff
--- a/Notes.md	Mon May 15 22:54:32 2023 +0200
+++ b/Notes.md	Thu May 18 22:53:31 2023 +0200
@@ -207,7 +207,7 @@
 
 * use `Base.splat((x,y)->x*y)` with the single argument `map`/`lmap`.
 * implement a kind of `unzip` function to get iterators for each component, which can then be used with the multiple-iterators-version of `map`/`lmap`.
-* Inspect the function in the `map`/`lmap` function to determine which mathches.
+* Inspect the function in the `map`/`lmap` function to determine which matches.
 
 Below is a partial implementation of `lmap` with some ideas
 ```julia