Skip to content

Commit 8be8049

Browse files
authored
Merge pull request JuliaCollections#135 from goggle/typos01
Correct some typos
2 parents c63e1db + 8b1feca commit 8be8049

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/src/faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ A summary of major internal changes from 0.3 to 0.4 is as follows:
4040
- Nodes can now implement `nodevalue` which allows for distinction between values associated with
4141
the nodes and the nodes themselves.
4242
- All tree navigation is now based on "cursors". A cursor provides the necessary information for
43-
moving betweeen adjacent nodes of a tree. Iterators now specify the movement among cursor
43+
moving between adjacent nodes of a tree. Iterators now specify the movement among cursor
4444
nodes.
4545
- Iterators now depend only on iterator states. This is mostly for internal convenience and does not
4646
change the external API.

src/base.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ StableNode{T}(𝒻, node)
236236
- `x`: the value of the constructed node, returned by [`nodevalue`](@ref).
237237
- `ch`: the children of the node, each must be of type `StableNode`.
238238
- `𝒻`: A function which, when called on the node of a tree returns a value which should be wrapped
239-
by a `StableNode`. The return value of `𝒻` must be convertable to `T` (see example).
239+
by a `StableNode`. The return value of `𝒻` must be convertible to `T` (see example).
240240
- `T`: The value type of the `StableNode`s in a tree.
241241
- `node`: A node from a tree which is to be used to construct the `StableNode` tree.
242242

0 commit comments

Comments
 (0)