diff options
author | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-10-06 02:38:18 +0000 |
---|---|---|
committer | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-10-06 02:38:18 +0000 |
commit | 631f8da938cbe0551af2f1af52d8663eda1ea0d7 (patch) | |
tree | 68a4adf72eb277e0074d18a5f2c2bdc4bf7a2bc3 | |
parent | a566bc0a38d103baf4598b73ed94bcfe021f6216 (diff) |
* ext/readline/extconf.rb: Update error message with correct words.
[fix GH-1453][ci skip] Patch by @magikid
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56358 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | ext/readline/extconf.rb | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Thu Oct 6 11:38:14 2016 Chris Jones <[email protected]> + + * ext/readline/extconf.rb: Update error message with correct words. + [fix GH-1453][ci skip] Patch by @magikid + Thu Oct 6 11:01:49 2016 Tieg Zaharia <[email protected]> * lib/uri/common.rb (WEB_ENCODINGS_): Update URI::WEB_ENCODINGS_ diff --git a/ext/readline/extconf.rb b/ext/readline/extconf.rb index dfa192ff95..7bba386540 100644 --- a/ext/readline/extconf.rb +++ b/ext/readline/extconf.rb @@ -59,7 +59,7 @@ else have_library("edit", "readline"))) || (readline.have_header("editline/readline.h") && have_library("edit", "readline")) - raise "readline nor libedit not found" + raise "Neither readline nor libedit was found" end end |