Fixed two improper uses of @example{} (should have been @code{}).

This commit is contained in:
John Wiegley 2009-02-06 22:39:21 -04:00
parent 8f883b463d
commit 03dcc07089

View file

@ -4038,12 +4038,12 @@ how the steps above are achieved.
@subsection Basic amounts @subsection Basic amounts
The most fundamental type in Ledger is the amount, which may or may not The most fundamental type in Ledger is the amount, which may or may
have a commodity attached to it. First, we'll deal with the bare case, not have a commodity attached to it. First, we'll deal with the bare
just to show how the amount type works. In C++, most all of Ledger's case, just to show how the amount type works. In C++, most all of
internal types end in @example{_t}; in Python, the same type name is Ledger's internal types end in @code{_t}; in Python, the same type
used, but the @example{_t} suffix is dropped. Examples of usage in both name is used, but the @code{_t} suffix is dropped. Examples of usage
languages will be presented throughout. in both languages will be presented throughout.