summaryrefslogtreecommitdiff
path: root/src/op.cc
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-01-31 01:21:14 -0400
committerJohn Wiegley <johnw@newartisans.com>2009-01-31 01:21:14 -0400
commitc5795c66c9044c347332812498b888787e0edd4a (patch)
tree02c06509902ba8b38b7d8688d5e67ba47d177b6f /src/op.cc
parent75f1cd727cc4de5640a529f331da5c1b9a6ce00b (diff)
downloadfork-ledger-c5795c66c9044c347332812498b888787e0edd4a.tar.gz
fork-ledger-c5795c66c9044c347332812498b888787e0edd4a.tar.bz2
fork-ledger-c5795c66c9044c347332812498b888787e0edd4a.zip
"div", or "//", is now the operator of division.
Diffstat (limited to 'src/op.cc')
-rw-r--r--src/op.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/op.cc b/src/op.cc
index a39ac532..215c6864 100644
--- a/src/op.cc
+++ b/src/op.cc
@@ -291,7 +291,7 @@ bool expr_t::op_t::print(std::ostream& out, const context_t& context) const
out << "(";
if (left() && left()->print(out, context))
found = true;
- out << " / ";
+ out << " // ";
if (has_right() && right()->print(out, context))
found = true;
out << ")";