Fix incorrect escape sequence error on v0.7.

This commit is contained in:
Jonathan Goldfarb 2017-08-29 12:19:01 -04:00
parent 5b9561c13e
commit 25bcc3cbc1

View File

@ -175,7 +175,7 @@ function hasgrid(arg::Symbol, letter)
if arg in _allGridSyms
arg in (:all, :both, :on) || contains(string(arg), string(letter))
else
warn("Unknown grid argument $arg; $letter\grid was set to `true` instead.")
warn("Unknown grid argument $arg; $letter\\grid was set to `true` instead.")
true
end
end