summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick White <git@njw.name>2020-07-20 18:50:22 +0100
committerNick White <git@njw.name>2020-07-20 18:50:22 +0100
commit80b49a19f921a6a3742eb7b7ec2937b872fe4d49 (patch)
tree5261b1ec434b021d13f1cb56a1f64ccc606d2164
parent09b1d4f8f1992e15e78e7a15717eae2597526fea (diff)
Fix typo
-rw-r--r--graph.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/graph.go b/graph.go
index a7b46bc..e9a662c 100644
--- a/graph.go
+++ b/graph.go
@@ -53,7 +53,7 @@ func Graph(confs map[string]*Conf, bookname string, w io.Writer) error {
return GraphOpts(confs, bookname, "Page number", true, w)
}
-// Graph creates a graph of confidences
+// GraphOpts creates a graph of confidences
func GraphOpts(confs map[string]*Conf, bookname string, xaxis string, guidelines bool, w io.Writer) error {
if len(confs) < 2 {
return errors.New("Not enough valid confidences")