Skip to content

Commit

Permalink
Fix mangled operator name.
Browse files Browse the repository at this point in the history
  • Loading branch information
Joni Freeman committed Sep 14, 2009
1 parent b452c56 commit 6a17261
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lift-json/src/main/scala/net/liftweb/json/Meta.scala
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ private[json] object Meta {
operators.foldLeft(f.getName)((n, o) => n.replace(o._1, o._2))

val operators = Map("$eq" -> "=", "$greater" -> ">", "$less" -> "<", "$plus" -> "+", "$minus" -> "-",
"$times" -> "*", "div" -> "/", "$bang" -> "!", "$at" -> "@", "$hash" -> "#",
"$times" -> "*", "$div" -> "/", "$bang" -> "!", "$at" -> "@", "$hash" -> "#",
"$percent" -> "%", "$up" -> "^", "$amp" -> "&", "$tilde" -> "~", "$qmark" -> "?",
"$bar" -> "|", "$bslash" -> "\\")

Expand Down

0 comments on commit 6a17261

Please sign in to comment.