Skip to content

Commit f8c3fee

Browse files
committed
Adds missing hash to UPGRADING.md
1 parent d4eee5b commit f8c3fee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

UPGRADING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Upgrading Grape
33

44
### Upgrading to >= 1.2.0
55

6-
### Changes in the Grape::API class
6+
#### Changes in the Grape::API class
77

88
In an effort to make APIs re-mountable, The class `Grape::API` no longer refers to an API instance,
99
rather, what used to be `Grape::API` is now `Grape::API::Instance` and `Grape::API` was replaced
@@ -21,7 +21,7 @@ class Twitter::API < Grape::API
2121
rescue_from :all do |e|
2222
# version prior to 1.2.0
2323
Rack::Response.new([ e.message ], 500, { 'Content-type' => 'text/error' }).finish
24-
# 1.2.0 version
24+
# 1.2.0 version
2525
Rack::Response.new([ e.message ], 500, { 'Content-type' => 'text/error' })
2626
end
2727
end

0 commit comments

Comments
 (0)