From 430af02794681c56735f47745bdf30894e039d8a Mon Sep 17 00:00:00 2001 From: Max Brosnahan Date: Tue, 8 Dec 2015 10:26:35 +1300 Subject: [PATCH] Tweak documentation to refer to UnroutedHandler --- handler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/handler.go b/handler.go index a6a6136..2a8a9ba 100644 --- a/handler.go +++ b/handler.go @@ -15,7 +15,7 @@ type Handler struct { // NewHandler creates a routed tus protocol handler. This is the simplest // way to use tusd but may not be as configurable as you require. If you are -// integrating this into an existing app you may like to use tusd.NewHandler +// integrating this into an existing app you may like to use tusd.NewUnroutedHandler // instead. Using tusd.NewUnroutedHandler allows the tus handlers to be combined into // your existing router (aka mux) directly. It also allows the GET and DELETE // endpoints to be customized. These are not part of the protocol so can be