Skip to content

Commit

Permalink
Fix bug on log10 representation (#190)
Browse files Browse the repository at this point in the history
  • Loading branch information
odashi authored Nov 15, 2023
1 parent 4a0eaf4 commit fea55f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/latexify/codegen/expression_rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ class FunctionRule:
"fsum": FunctionRule(r"\sum", is_unary=True),
"gamma": FunctionRule(r"\Gamma"),
"log": FunctionRule(r"\log", is_unary=True),
"log10": FunctionRule(r"\log_10", is_unary=True),
"log10": FunctionRule(r"\log_{10}", is_unary=True),
"log2": FunctionRule(r"\log_2", is_unary=True),
"prod": FunctionRule(r"\prod", is_unary=True),
"sec": FunctionRule(r"\sec", is_unary=True),
Expand Down

0 comments on commit fea55f8

Please sign in to comment.