Skip to content

Commit 7bde62c

Browse files
committed
Fix CHANGELOG
1 parent 848464a commit 7bde62c

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -654,17 +654,19 @@ version 'v1', using: :param, parameter: 'v'
654654

655655
## Linting
656656

657-
You can check if your API is in conformance with [Rack's specification](https://github.com/rack/rack/blob/main/SPEC.rdoc) by calling `lint!` at the API level or through [configuration](#configuration):
657+
You can check whether your API is in conformance with the [Rack's specification](https://github.com/rack/rack/blob/main/SPEC.rdoc) by calling `lint!` at the API level or through [configuration](#configuration).
658+
658659
```ruby
659-
# API Level
660660
class Api < Grape::API
661661
lint!
662662
end
663-
# OR through configuration
663+
```
664+
```ruby
664665
Grape.configure do |config|
665666
config.lint = true
666667
end
667-
# OR
668+
```
669+
```ruby
668670
Grape.config.lint = true
669671
```
670672

0 commit comments

Comments
 (0)