From c0c71f82c00fdac964bcf588c2ea49c4c18d5de7 Mon Sep 17 00:00:00 2001
From: Cameron Dershem <cldershem@gmail.com>
Date: Tue, 25 Jun 2019 13:23:36 -0400
Subject: [PATCH] Fixes typo. (#940)

Small typo fix.
---
 src/resource.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/resource.rs b/src/resource.rs
index ad08a15ff..c2691eebe 100644
--- a/src/resource.rs
+++ b/src/resource.rs
@@ -27,7 +27,7 @@ type HttpNewService = BoxedNewService<(), ServiceRequest, ServiceResponse, Error
 /// Resource in turn has at least one route.
 /// Route consists of an handlers objects and list of guards
 /// (objects that implement `Guard` trait).
-/// Resources and rouets uses builder-like pattern for configuration.
+/// Resources and routes uses builder-like pattern for configuration.
 /// During request handling, resource object iterate through all routes
 /// and check guards for specific route, if request matches all
 /// guards, route considered matched and route handler get called.