summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2001-03-29 22:22:23 (GMT)
committerFred Drake <fdrake@acm.org>2001-03-29 22:22:23 (GMT)
commit14631f674f1a571e6ff99edf36a6075e611f4d75 (patch)
treeb3f3d7cd884f077ac827f8d8c1cef4d0e7df7104
parentc612a14e9e19bd073807fdcd6c0f630a63780d06 (diff)
downloadcpython-14631f674f1a571e6ff99edf36a6075e611f4d75.zip
cpython-14631f674f1a571e6ff99edf36a6075e611f4d75.tar.gz
cpython-14631f674f1a571e6ff99edf36a6075e611f4d75.tar.bz2
Fix serious markup errors.
-rw-r--r--Doc/lib/libcursespanel.tex22
1 files changed, 11 insertions, 11 deletions
diff --git a/Doc/lib/libcursespanel.tex b/Doc/lib/libcursespanel.tex
index 8be0d30..f1f279b 100644
--- a/Doc/lib/libcursespanel.tex
+++ b/Doc/lib/libcursespanel.tex
@@ -20,9 +20,9 @@ The module \module{curses.panel} defines the following functions:
Returns the bottom panel in the panel stack.
\end{funcdesc}
-\begin{methoddesc}{new_panel}{win}
+\begin{funcdesc}{new_panel}{win}
Returns a panel object, associating it with the given window \var{win}.
-\end{methoddesc}
+\end{funcdesc}
\begin{funcdesc}{top_panel}{}
Returns the top panel in the panel stack.
@@ -42,23 +42,23 @@ responsible for the window's depth in the panel stack.
Panel objects have the following methods:
-\begin{methoddesc}{above}
+\begin{methoddesc}{above}{}
Returns the panel above the current panel.
\end{methoddesc}
-\begin{methoddesc}{below}
+\begin{methoddesc}{below}{}
Returns the panel below the current panel.
\end{methoddesc}
-\begin{methoddesc}{bottom}
+\begin{methoddesc}{bottom}{}
Push the panel to the bottom of the stack.
\end{methoddesc}
-\begin{methoddesc}{hidden}
+\begin{methoddesc}{hidden}{}
Returns true if the panel is hidden (not visible), false otherwise.
\end{methoddesc}
-\begin{methoddesc}{hide}
+\begin{methoddesc}{hide}{}
Hide the panel. This does not delete the object, it just makes the
window on screen invisible.
\end{methoddesc}
@@ -76,18 +76,18 @@ Set the panel's user pointer to \var{obj}. This is used to associate an
arbitrary piece of data with the panel, and can be any Python object.
\end{methoddesc}
-\begin{methoddesc}{show}
+\begin{methoddesc}{show}{}
Display the panel (which might have been hidden).
\end{methoddesc}
-\begin{methoddesc}{top}
+\begin{methoddesc}{top}{}
Push panel to the top of the stack.
\end{methoddesc}
-\begin{methoddesc}{userptr}
+\begin{methoddesc}{userptr}{}
Returns the user pointer for the panel. This might be any Python object.
\end{methoddesc}
-\begin{methoddesc}{window}
+\begin{methoddesc}{window}{}
Returns the window object associated with the panel.
\end{methoddesc}