This commit is contained in:
Nicholas Bauer 2021-08-27 12:47:04 -04:00
parent eb9f8fd180
commit aa55ce6ffd

View File

@ -1004,7 +1004,7 @@ function parse_axis_kw(s::Symbol)
s = string(s) s = string(s)
for letter in ('x', 'y', 'z') for letter in ('x', 'y', 'z')
if startswith(s, letter) if startswith(s, letter)
return (get_axis_attr(letter), Symbol(chop(s, head = 1, tail = 0))) return (Symbol(letter), Symbol(chop(s, head = 1, tail = 0)))
end end
end end
return nothing return nothing