From 0732b3043fdde32bb2a1bdb91394e6c79f4f458f Mon Sep 17 00:00:00 2001 From: wonda-tea-coffee Date: Sun, 27 Jun 2021 18:59:38 +0900 Subject: [PATCH] fix typo --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5847a86d..d34cdb41 100644 --- a/README.md +++ b/README.md @@ -120,8 +120,8 @@ BetterErrors.maximum_variable_inspect_size = 100_000 ```ruby # e.g. in config/initializers/better_errors.rb # This will stop BetterErrors from trying to inspect objects of these classes, which can cause -# slow loading times and unneccessary database queries. Does not check inheritance chain, use -# strings not contants. +# slow loading times and unnecessary database queries. Does not check inheritance chain, use +# strings not constants. # default value: ['ActionDispatch::Request', 'ActionDispatch::Response'] BetterErrors.ignored_classes = ['ActionDispatch::Request', 'ActionDispatch::Response'] ```