From 9e7323fa4441997d1fd31772aa1e0c595dba3f01 Mon Sep 17 00:00:00 2001
From: elotreum <59893399+elotreum@users.noreply.github.com>
Date: Thu, 16 Jan 2020 19:43:50 -0700
Subject: [PATCH] correct godoc comments to include period

---
 bittorrent/params.go | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/bittorrent/params.go b/bittorrent/params.go
index b7fb620..2d1baaf 100644
--- a/bittorrent/params.go
+++ b/bittorrent/params.go
@@ -57,17 +57,17 @@ type QueryParams struct {
 type routeParamsKey struct{}
 
 // RouteParamsKey is a key for the context of a request that
-// contains the named parameters from the http router
+// contains the named parameters from the http router.
 var RouteParamsKey = routeParamsKey{}
 
 // RouteParam is a type that contains the values from the named parameters
-// on the route
+// on the route.
 type RouteParam struct {
 	Key   string
 	Value string
 }
 
-// RouteParams is a collection of RouteParam instances
+// RouteParams is a collection of RouteParam instances.
 type RouteParams []RouteParam
 
 // ParseURLData parses a request URL or UDP URLData as defined in BEP41.