From ffc4d8e5c63f3842960d6ef06139a3178e0729cd Mon Sep 17 00:00:00 2001 From: Aaron Groom Date: Tue, 2 Apr 2019 15:45:13 -0400 Subject: [PATCH] Remove extraneous word --- doc/basics/route_data_validation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/basics/route_data_validation.md b/doc/basics/route_data_validation.md index bc98ea1a..b3b9cde9 100644 --- a/doc/basics/route_data_validation.md +++ b/doc/basics/route_data_validation.md @@ -1,6 +1,6 @@ # Route Data Validation -Route data can be anything, so it's easy to do go wrong. Accidentally adding a `:role` key instead of `:roles` might hinder the whole routing app without any authorization in place. +Route data can be anything, so it's easy to go wrong. Accidentally adding a `:role` key instead of `:roles` might hinder the whole routing app without any authorization in place. To fail fast, we could use the custom `:coerce` and `:compile` hooks to apply data validation and throw exceptions on first sighted problem.