Merge pull request #2935 from gnopor/patch-1

fix typo in the summary section
This commit is contained in:
Ilya Kantor 2022-04-14 06:45:01 +03:00 committed by GitHub
commit ff2bbc8431
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -535,7 +535,7 @@ Terms:
list = { value, next -> list }
```
Trees like HTML elements tree or the department tree from this chapter are also naturally recursive: they branch and every branch can have other branches.
Trees like HTML elements tree or the department tree from this chapter are also naturally recursive: they have branches and every branch can have other branches.
Recursive functions can be used to walk them as we've seen in the `sumSalary` example.