From 9478afb3a3245bf619d288d5c4f6d7888db7b5ac Mon Sep 17 00:00:00 2001 From: Dan Harrin Date: Sun, 17 Jan 2021 00:18:42 +0000 Subject: [PATCH] Update README.md --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b7a011c..e9589ba 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,11 @@ class Login extends Component } ``` -In this example, we will set up rate limiting on the `submit` action. The user will only be able to submit this action 10 times every minute. If this limit is exceeded, a `TooManyRequestsException` will be thrown. The user is presented with a validation error and instructed how long they have until the limit is lifted: +In this example, we will set up rate limiting on the `submit` action. + +The user will only be able to submit this action 10 times every minute. + +If this limit is exceeded, a `TooManyRequestsException` will be thrown. The user is presented with a validation error and instructed how long they have until the limit is lifted: ```php