[Fix #376] Update outdated docs: none? -> nil?

This commit is contained in:
Johan Lundström 2021-11-25 10:22:25 +01:00 committed by GitHub
parent efff59bb62
commit 9498e0289c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ end
```ruby
Dry::Schema.Params do
required(:age) { none? | int? }
required(:age) { nil? | int? }
end
```