You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{k,[{:special,_,_}]},acc->[acc|[" the operator\e[31m",k,"\e[0m is invalid, did you mean any of #{__suggest__(k)}\n"]]
237
-
{k,[{:special,_,_}|_]=v},acc->[acc|[" the operator \e[31m",k,"\e[0m is mentioned #{length(v)} times but is invalid, did you mean any of #{__suggest__(k)}\n"]]
238
-
{k,[_]},acc->[acc|[" the relation \e[31m",k,"\e[0m does not exist\n"]]
239
-
{k,v},acc->[acc|[" the relation \e[31m",k,"\e[0m is mentioned #{length(v)} times but does not exist\n"]]
239
+
{k,[{:special,_,_}]},acc->[acc|[" the operator",@error,k,@reset," is invalid, did you mean any of #{__suggest__(k)}\n"]]
240
+
{k,[{:special,_,_}|_]=v},acc->[acc|[" the operator ",@error,k,@reset," is mentioned #{length(v)} times but is invalid, did you mean any of #{__suggest__(k)}\n"]]
241
+
{k,[_]},acc->[acc|[" the relation ",@error,k,@reset," does not exist\n"]]
242
+
{k,v},acc->[acc|[" the relation ",@error,k,@reset," is mentioned #{length(v)} times but does not exist\n"]]
0 commit comments