From 341f7e1e734eb3b7de48260362027cefcefc1d46 Mon Sep 17 00:00:00 2001 From: Charles Iliya Krempeaux Date: Tue, 8 Nov 2016 13:25:33 -0800 Subject: [PATCH] corrected minor typo in docs. --- compile.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compile.go b/compile.go index ba620c5..16bb93c 100644 --- a/compile.go +++ b/compile.go @@ -22,7 +22,7 @@ var ( // Compile takes an uncompiled pattern, in the form of a Go string (ex: "/users/{userId}/vehicles/{vehicleId}"), // and returns a compiled pattern. // -// The compiled pattern can the be used to test if a path matches the pattern it contains. +// The compiled pattern can then be used to test if a path matches the pattern it contains. // // If the uncompiled pattern has a syntax error, Compile returns an error. //