diff options
author | Nick White <git@njw.name> | 2020-07-20 18:50:22 +0100 |
---|---|---|
committer | Nick White <git@njw.name> | 2020-07-20 18:50:22 +0100 |
commit | 80b49a19f921a6a3742eb7b7ec2937b872fe4d49 (patch) | |
tree | 5261b1ec434b021d13f1cb56a1f64ccc606d2164 | |
parent | 09b1d4f8f1992e15e78e7a15717eae2597526fea (diff) |
Fix typo
-rw-r--r-- | graph.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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") |