From 4d80d99d3626896c0c39309baa263d49b8be1ae6 Mon Sep 17 00:00:00 2001 From: Trevor Wennblom Date: Thu, 12 Apr 2012 18:58:03 -0500 Subject: [PATCH] minor typos --- middleman-core/lib/middleman-core/base.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/middleman-core/lib/middleman-core/base.rb b/middleman-core/lib/middleman-core/base.rb index 29ad337b..cb026a34 100644 --- a/middleman-core/lib/middleman-core/base.rb +++ b/middleman-core/lib/middleman-core/base.rb @@ -352,7 +352,7 @@ class Middleman::Base # Halt the current request and return a response # # @private - # @param [String] Reponse value + # @param [String] Response value def halt(response) throw :halt, response end @@ -365,7 +365,7 @@ class Middleman::Base # @return [Boolean] If we're in build mode def build?; environment == :build; end - # Core repsonse method. We process the request, check with the sitemap, + # Core response method. We process the request, check with the sitemap, # and return the correct file, response or status message. # # @private