aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authoradnano <[email protected]>2020-09-25 20:31:03 -0400
committeradnano <[email protected]>2020-09-25 20:31:07 -0400
commitbe55224f89540124815c9e981423b2421b2dc944 (patch)
tree42a9416b82fe735d532745a6aa35f0b1a6aee1b2 /README.md
parentAdd method to check if hostname is found in KnownHosts (diff)
downloadgo-gemini-be55224f89540124815c9e981423b2421b2dc944.tar.xz
go-gemini-be55224f89540124815c9e981423b2421b2dc944.zip
Fix known host expires check
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 33eebd7..cb83665 100644
--- a/README.md
+++ b/README.md
@@ -34,7 +34,7 @@ The way this is implemented in this package is like so:
1. Client makes a request with `NewRequest`. The client then sends the request
with `Send(*Request) (*Response, error)`. The client can optionally verify
- the server certificates with `VerifyCertificate(*x509.Certificate, *Request)`
+ the server certificate with `VerifyCertificate(*x509.Certificate, *Request)`
2. Server recieves the request and constructs a response.
The server calls the `Serve(*ResponseWriter, *Request)` method on the
`Handler` field. The handler writes the response. The server then closes