From 7c395fcc83c6dfab8913a9e95007cccc1e9f2eba Mon Sep 17 00:00:00 2001
From: Luke Cowell <lcowell@gmail.com>
Date: Tue, 8 May 2018 17:40:18 -0700
Subject: [PATCH] replace typo `scoupe` with `scope`

---
 src/scope.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/scope.rs b/src/scope.rs
index c5aefb69..aecfd6bf 100644
--- a/src/scope.rs
+++ b/src/scope.rs
@@ -76,7 +76,7 @@ impl<S: 'static> Scope<S> {
         mem::replace(&mut self.filters, Vec::new())
     }
 
-    /// Add match predicate to scoupe.
+    /// Add match predicate to scope.
     ///
     /// ```rust
     /// # extern crate actix_web;