summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-02-06 22:39:21 -0400
committerJohn Wiegley <johnw@newartisans.com>2009-02-06 22:39:21 -0400
commit03dcc07089bd7f16fd4c2c0f7e69003469103b4c (patch)
tree09aff3c4571e98d6736116b06ee6a9931b4c2d7b /doc
parent8f883b463d5faffc065653d22cabc909e11eaaee (diff)
downloadfork-ledger-03dcc07089bd7f16fd4c2c0f7e69003469103b4c.tar.gz
fork-ledger-03dcc07089bd7f16fd4c2c0f7e69003469103b4c.tar.bz2
fork-ledger-03dcc07089bd7f16fd4c2c0f7e69003469103b4c.zip
Fixed two improper uses of @example{} (should have been @code{}).
Diffstat (limited to 'doc')
-rw-r--r--doc/ledger.texi12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/ledger.texi b/doc/ledger.texi
index 700f78e4..b6f52435 100644
--- a/doc/ledger.texi
+++ b/doc/ledger.texi
@@ -4038,12 +4038,12 @@ how the steps above are achieved.
@subsection Basic amounts
-The most fundamental type in Ledger is the amount, which may or may not
-have a commodity attached to it. First, we'll deal with the bare case,
-just to show how the amount type works. In C++, most all of Ledger's
-internal types end in @example{_t}; in Python, the same type name is
-used, but the @example{_t} suffix is dropped. Examples of usage in both
-languages will be presented throughout.
+The most fundamental type in Ledger is the amount, which may or may
+not have a commodity attached to it. First, we'll deal with the bare
+case, just to show how the amount type works. In C++, most all of
+Ledger's internal types end in @code{_t}; in Python, the same type
+name is used, but the @code{_t} suffix is dropped. Examples of usage
+in both languages will be presented throughout.