Skip to content

Commit

Permalink
Minor doc edits
Browse files Browse the repository at this point in the history
  • Loading branch information
kerrycobb committed Oct 12, 2022
1 parent 4e6fb6b commit 36327ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/phylogeni.nim
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ runnableExamples:
i.addChild(newNode("D", 1.0))
i.addChild(newNode("E", 1.0))
t.ladderize(Ascending)
echo t

# /C /-D
# -A| \-E
# \-B

echo t
var str = t.writeNewickString()
echo str
# [&U]((D:1.0,E:1.0)C:1.0,B:1.0)A:1.0;
Expand All @@ -60,7 +60,7 @@ runnableExamples:
##
## Generic Node Data
## =================
## `Node` is a generic type so its data field can be any object.
## `Node` is a generic type which can have any object stored in the data field.
##
## One great feature of PhylogeNi is that you do not need to completely rewrite your
## own parser/writer for custom data types when reading and writing a newick file or string.
Expand Down

0 comments on commit 36327ea

Please sign in to comment.