We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eeea202 commit 4187a9aCopy full SHA for 4187a9a
Encode and Decode Tree/readme.md
@@ -33,7 +33,7 @@ class BinaryNodeCoder {
33
}
34
35
// transforms string into `BinaryNode` representation
36
- func decode<T>(_ node: BinaryNode<T>Type, from string: String)
+ func decode<T>(from string: String)
37
throws -> BinaryNode<T> where T: Decodable {
38
39
@@ -145,6 +145,7 @@ class BinaryNodeCoder {
145
return node
146
147
148
+```
149
150
Here's a high level overview of the above code:
151
0 commit comments