Change `Node.Mapping.pairs` and `Node.Sequence.nodes` to internal

This commit is contained in:
Norio Nomura 2017-02-04 00:07:32 +09:00
parent f30798d6e6
commit 5e3c6be8e3
No known key found for this signature in database
GPG Key ID: D4A7318EB7F7138D
1 changed files with 2 additions and 2 deletions

View File

@ -59,7 +59,7 @@ extension Node {
}
public struct Mapping {
public var pairs: [Pair<Node>]
internal var pairs: [Pair<Node>]
public var tag: Tag
public var style: Style
@ -88,7 +88,7 @@ extension Node {
}
public struct Sequence {
public var nodes: [Node]
internal var nodes: [Node]
public var tag: Tag
public var style: Style