Update comments

This commit is contained in:
Arthur Baars
2021-02-08 09:46:21 +01:00
parent b553eb6964
commit f2a6f3aadc

View File

@@ -598,10 +598,10 @@ module Trees {
* / \ |
* empty non-empty |
* | \ |
* puts "done" \ |
* for \ |
* | arg |
* | | |
* for puts arg |
* puts "done" puts arg |
* \___/
* ```
*/
@@ -617,7 +617,7 @@ module Trees {
private UnderscoreArg getArray() { result = this.getValue().getChild() }
/**
* for pattern in value do body end
* for pattern in array do body end
* ```
* array +-> in +--[non empty]--> pattern -> body -> in
* |--[empty]--> for