Bunch of minor docs edits.

This commit is contained in:
Simon Forman
2018-06-06 12:47:11 -07:00
parent 3fb1e0ea81
commit 09276fdc13
16 changed files with 23 additions and 12439 deletions
+1 -2
View File
@@ -1,9 +1,8 @@
This notebook is about using the "zipper" with joy datastructures. See the [Zipper wikipedia entry](https://en.wikipedia.org/wiki/Zipper_%28data_structure%29) or the original paper: ["FUNCTIONAL PEARL The Zipper" by Gérard Huet](https://www.st.cs.uni-saarland.de/edu/seminare/2005/advanced-fp/docs/huet-zipper.pdf)
Given a datastructure on the stack we can navigate through it, modify it, and rebuild it using the "zipper" technique.
### Preamble
Given a datastructure on the stack we can navigate through it, modify it, and rebuild it using the "zipper" technique.
```python