소스 검색

fetching -> connecting to

Jasper van Merle 6 년 전
부모
커밋
3cb97f71b3
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      lib/docs/core/doc.rb

+ 1 - 1
lib/docs/core/doc.rb

@@ -228,7 +228,7 @@ module Docs
       if response.success?
         response.body
       else
-        reason = response.timed_out? ? "Timed out while fetching #{url}" : "Couldn't fetch #{url} (response code #{response.code})"
+        reason = response.timed_out? ? "Timed out while connecting to #{url}" : "Couldn't fetch #{url} (response code #{response.code})"
         opts[:logger].error(reason)
         raise reason
       end