diff options
| author | Adnan Maolood <[email protected]> | 2021-01-14 19:57:52 -0500 |
|---|---|---|
| committer | Adnan Maolood <[email protected]> | 2021-01-14 19:57:52 -0500 |
| commit | 7a00539f751c659dc45c66432b78e82096770573 (patch) | |
| tree | ceacfd0ac555b1bc28b2a2949a5bc06544984730 /tofu/tofu.go | |
| parent | tofu: Update documentation (diff) | |
| download | go-gemini-7a00539f751c659dc45c66432b78e82096770573.tar.xz go-gemini-7a00539f751c659dc45c66432b78e82096770573.zip | |
tofu: Fix example
Diffstat (limited to 'tofu/tofu.go')
| -rw-r--r-- | tofu/tofu.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tofu/tofu.go b/tofu/tofu.go index 814dc57..2ea8ac8 100644 --- a/tofu/tofu.go +++ b/tofu/tofu.go @@ -103,7 +103,7 @@ func (k *KnownHosts) Load(path string) error { // var knownHosts tofu.KnownHosts // scanner := bufio.NewScanner(r) // for scanner.Scan() { -// host, err := ParseHost(scanner.Bytes()) +// host, err := tofu.ParseHost(scanner.Bytes()) // if err != nil { // // handle error // } else { |