@@ -278,14 +278,15 @@ \subsection{Basic Usage\label{optparse-basic-usage}}
278278
279279The interesting stuff, of course, is what comes after the option
280280strings. For now, we'll only cover four of the things you can put
281- there: \var {action}, \var {type}, \var {dest} (destination), and
282- \var {help}.
281+ there: \emph {action }, \emph {type }, \emph {dest } (destination), and
282+ \emph {help }.
283283
284- \subsubsection {The \var {store} action\label {optparse-store-action } }
284+ \subsubsection {The \emph {store } action%
285+ \label {optparse-store-action } }
285286
286287The action tells \module {optparse} what to do when it sees one of the
287288option strings for this option on the command-line. For example, the
288- action \var {store} means: take the next argument (or the remainder of
289+ action \emph {store } means: take the next argument (or the remainder of
289290the current argument), ensure that it is of the correct type, and
290291store it to your chosen destination.
291292
@@ -360,7 +361,8 @@ \subsubsection{The \var{store} action\label{optparse-store-action}}
360361Adding types is fairly easy; please refer to
361362section~\ref {optparse-adding-types }, `` Adding new types.''
362363
363- \subsubsection {Other \var {store_*} actions\label {optparse-other-store-actions } }
364+ \subsubsection {Other \emph {store_* } actions%
365+ \label {optparse-other-store-actions } }
364366
365367Flag options---set a variable to true or false when a particular
366368option is seen---are quite common. \module {optparse} supports them
0 commit comments