Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b67449d

Browse files
committed
Fix spacing markup and other sundries.
1 parent c60577e commit b67449d

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

Doc/lib/libos.tex

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ \subsection{File Descriptor Operations \label{os-fd-ops}}
421421
Return system configuration information relevant to an open file.
422422
\var{name} specifies the configuration value to retrieve; it may be a
423423
string which is the name of a defined system value; these names are
424-
specified in a number of standards (\POSIX.1, \UNIX 95, \UNIX 98, and
424+
specified in a number of standards (\POSIX.1, \UNIX{} 95, \UNIX{} 98, and
425425
others). Some platforms define additional names as well. The names
426426
known to the host operating system are given in the
427427
\code{pathconf_names} dictionary. For configuration variables not
@@ -793,7 +793,7 @@ \subsection{Files and Directories \label{os-file-dir}}
793793
Return system configuration information relevant to a named file.
794794
\var{name} specifies the configuration value to retrieve; it may be a
795795
string which is the name of a defined system value; these names are
796-
specified in a number of standards (\POSIX.1, \UNIX 95, \UNIX 98, and
796+
specified in a number of standards (\POSIX.1, \UNIX{} 95, \UNIX{} 98, and
797797
others). Some platforms define additional names as well. The names
798798
known to the host operating system are given in the
799799
\code{pathconf_names} dictionary. For configuration variables not
@@ -1080,7 +1080,7 @@ \subsection{Files and Directories \label{os-file-dir}}
10801080
of its subdirectories (directories are generated bottom up).
10811081

10821082
When \var{topdown} is true, the caller can modify the \var{dirnames} list
1083-
in-place (e.g., via \keyword{del} or slice assignment), and
1083+
in-place (perhaps unsing \keyword{del} or slice assignment), and
10841084
\function{walk()} will only recurse into the subdirectories whose names
10851085
remain in \var{dirnames}; this can be used to prune the search,
10861086
impose a specific order of visiting, or even to inform \function{walk()}
@@ -1667,7 +1667,7 @@ \subsection{Miscellaneous System Information \label{os-path}}
16671667
Return string-valued system configuration values.
16681668
\var{name} specifies the configuration value to retrieve; it may be a
16691669
string which is the name of a defined system value; these names are
1670-
specified in a number of standards (\POSIX, \UNIX 95, \UNIX 98, and
1670+
specified in a number of standards (\POSIX, \UNIX{} 95, \UNIX{} 98, and
16711671
others). Some platforms define additional names as well. The names
16721672
known to the host operating system are given in the
16731673
\code{confstr_names} dictionary. For configuration variables not

Doc/lib/libshlex.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ \subsection{shlex Objects \label{shlex-objects}}
117117
\begin{methoddesc}{pop_source}{}
118118
Pop the last-pushed input source from the input stack.
119119
This is the same method used internally when the lexer reaches
120-
\EOF on a stacked input stream.
120+
\EOF{} on a stacked input stream.
121121
\versionadded{2.1}
122122
\end{methoddesc}
123123

Doc/lib/libstdtypes.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -416,8 +416,8 @@ \subsection{Sequence Types \label{typesseq}}
416416
separating items with commas: \code{[a, b, c]}. Tuples are
417417
constructed by the comma operator (not within square brackets), with
418418
or without enclosing parentheses, but an empty tuple must have the
419-
enclosing parentheses, e.g., \code{a, b, c} or \code{()}. A single
420-
item tuple must have a trailing comma, e.g., \code{(d,)}.
419+
enclosing parentheses, such as \code{a, b, c} or \code{()}. A single
420+
item tuple must have a trailing comma, such as \code{(d,)}.
421421
\obindex{sequence}
422422
\obindex{string}
423423
\obindex{Unicode}
@@ -1361,7 +1361,7 @@ \subsection{File Objects
13611361
include that file may remain unchanged, increase to the specified
13621362
size as if zero-filled, or increase to the specified size with
13631363
undefined new content.
1364-
Availability: Windows, many \UNIX variants.
1364+
Availability: Windows, many \UNIX{} variants.
13651365
\end{methoddesc}
13661366

13671367
\begin{methoddesc}[file]{write}{str}

Doc/lib/libtime.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ \section{\module{time} ---
357357
These will be propogated into time.tzname
358358

359359
\item[offset]
360-
The offset has the form: \plusminus hh[:mm[:ss]].
360+
The offset has the form: \plusminus{} hh[:mm[:ss]].
361361
This indicates the value added the local time to arrive at UTC.
362362
If preceded by a '-', the timezone is east of the Prime
363363
Meridian; otherwise, it is west. If no offset follows

0 commit comments

Comments
 (0)