Skip to content

Commit 972747f

Browse files
committed
[skip ci] Fix typos in README
- acheived ==> achieved - paramters ==> parameters - dinamically ==> dynamically - Fix extra backtick in code fence
1 parent 3947ed7 commit 972747f

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ Using RubyGems
123123

124124
```sh
125125
gem install nokogiri --version '~> 1.5.10'
126-
````
126+
```
127127

128128
### Configuring Logging
129129

@@ -752,7 +752,7 @@ settings.sp_cert_multi = {
752752
}
753753
```
754754

755-
Certificate rotation is acheived by inserting new certificates at the bottom of each list,
755+
Certificate rotation is achieved by inserting new certificates at the bottom of each list,
756756
and then removing the old certificates from the top of the list once your IdPs have migrated.
757757
A common practice is for apps to publish the current SP metadata at a URL endpoint and have
758758
the IdP regularly poll for updates.
@@ -803,7 +803,7 @@ Here is an example that we could add to our previous controller to generate and
803803
```ruby
804804
# Create a SP initiated SLO
805805
def sp_logout_request
806-
# LogoutRequest accepts plain browser requests w/o paramters
806+
# LogoutRequest accepts plain browser requests w/o parameters
807807
settings = saml_settings
808808

809809
if settings.idp_slo_service_url.nil?
@@ -1010,7 +1010,7 @@ You must store this ID in a persistent cache (like Redis or Memcached) that is s
10101010

10111011
The ID should be stored until the assertion's validity window has passed. You will need to check how long the trusted IdPs consider the assertion valid and then add the allowed_clock_drift.
10121012

1013-
You can define a global value, or set this value dinamically based on the `not_on_or_after` value of the re + `allowed_clock_drift`.
1013+
You can define a global value, or set this value dynamically based on the `not_on_or_after` value of the re + `allowed_clock_drift`.
10141014

10151015
```ruby
10161016
# In your `consume` action, after a successful validation:

0 commit comments

Comments
 (0)