Skip to content

Commit 69a8cdd

Browse files
author
smeyer
committed
more use of \manual
git-svn-id: https://svn.r-project.org/R/trunk@88893 00db46b3-68df-0310-9c12-caf00c1e9a41
1 parent b00d235 commit 69a8cdd

File tree

7 files changed

+15
-16
lines changed

7 files changed

+15
-16
lines changed

src/library/base/man/readBin.Rd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ writeBin(object, con, size = NA_integer_,
7272
the string is valid in the current locale's encoding.
7373
7474
Handling \R's missing and special (\code{Inf}, \code{-Inf} and
75-
\code{NaN}) values is discussed in the \sQuote{R Data Import/Export} manual.
75+
\code{NaN}) values is discussed in \manual{R-data}{Special values}.
7676

7777
Only \eqn{2^{31}-1}{2^31 - 1} bytes can be written in a single
7878
call (and that is the maximum capacity of a raw vector on 32-bit
@@ -106,9 +106,9 @@ writeBin(object, con, size = NA_integer_,
106106
invisibly \code{NULL}.
107107
}
108108
\seealso{
109-
The \sQuote{R Data Import/Export} manual.
109+
\manual{R-data}{Binary connections}.
110110

111-
\code{readChar} to read/write fixed-length strings.
111+
\code{\link{readChar}} to read/write fixed-length strings.
112112

113113
\code{\link{connections}}, \code{\link{readLines}},
114114
\code{\link{writeLines}}.

src/library/base/man/readChar.Rd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ writeChar(object, con, nchars = nchar(object, type = "chars"),
9797
}
9898

9999
\seealso{
100-
The \sQuote{R Data Import/Export} manual.
100+
The manual \manual{R-data}{}.
101101

102102
\code{\link{connections}}, \code{\link{readLines}},
103103
\code{\link{writeLines}}, \code{\link{readBin}}

src/library/base/man/scan.Rd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,8 +155,8 @@ scan(file = "", what = double(), nmax = -1, n = -1, sep = "",
155155
\item{fileEncoding}{character string: if non-empty declares the
156156
encoding used on a file (not a connection nor the keyboard) so the
157157
character data can be re-encoded. See the \sQuote{Encoding} section
158-
of the help for \code{\link{file}}, and the \sQuote{R Data
159-
Import/Export Manual}.
158+
of the help for \code{\link{file}}, and
159+
\manual{R-data}{Variations on read.table}.
160160
}
161161

162162
\item{encoding}{encoding to be assumed for input strings. If the

src/library/utils/man/read.DIF.Rd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,8 @@ read.DIF(file, header = FALSE,
122122
\item{fileEncoding}{character string: if non-empty declares the
123123
encoding used on a file (not a connection or clipboard) so the
124124
character data can be re-encoded. See the \sQuote{Encoding} section
125-
of the help for \code{\link{file}}, the \sQuote{R Data Import/Export}
126-
manual and \sQuote{Note}.}
125+
of the help for \code{\link{file}}, and
126+
\manual{R-data}{Variations on read.table}.}
127127
}
128128
\value{
129129
A data frame (\code{\link{data.frame}}) containing a representation of
@@ -141,7 +141,7 @@ read.DIF(file, header = FALSE,
141141
}
142142
\author{R Core; \code{transpose} option by Christoph Buser, ETH Zurich}
143143
\seealso{
144-
The \emph{R Data Import/Export} manual.
144+
The manual \manual{R-data}{}.
145145
146146
\code{\link{scan}}, \code{\link{type.convert}},
147147
\code{\link{read.fwf}} for reading \emph{f}ixed \emph{w}idth

src/library/utils/man/read.fwf.Rd

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,7 @@ read.fwf(file, widths, header = FALSE, sep = "\t",
4242
\item{fileEncoding}{character string: if non-empty declares the
4343
encoding used on a file (not a connection) so the character data can
4444
be re-encoded. See the \sQuote{Encoding} section of the help for
45-
\code{\link{file}}, the \sQuote{R Data Import/Export} manual and
46-
\sQuote{Note}.}
45+
\code{\link{file}}, and \manual{R-data}{Variations on read.table}.}
4746

4847
\item{\dots}{further arguments to be passed to
4948
\code{\link{read.table}}. Useful such arguments include

src/library/utils/man/read.table.Rd

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ read.delim2(file, header = TRUE, sep = "\t", quote = "\"",
190190
encoding used on a file when given as a character string (not on an
191191
existing connection) so the character data can
192192
be re-encoded. See the \sQuote{Encoding} section of the help for
193-
\code{\link{file}}, the \sQuote{R Data Import/Export} manual and
193+
\code{\link{file}}, \manual{R-data}{Variations on read.table}, and
194194
\sQuote{Note}.
195195
}
196196

@@ -288,8 +288,8 @@ read.delim2(file, header = TRUE, sep = "\t", quote = "\"",
288288

289289
\section{Memory usage}{
290290
These functions can use a surprising amount of memory when reading
291-
large files. There is extensive discussion in the \sQuote{R Data
292-
Import/Export} manual, supplementing the notes here.
291+
large files. There is extensive discussion in the manual \manual{R-data}{},
292+
supplementing the notes here.
293293

294294
Less memory will be used if \code{colClasses} is specified as one of
295295
the six \link{atomic} vector classes. This can be particularly so when
@@ -323,7 +323,7 @@ read.delim2(file, header = TRUE, sep = "\t", quote = "\"",
323323
}
324324

325325
\seealso{
326-
The \sQuote{R Data Import/Export} manual.
326+
The manual \manual{R-data}{}.
327327

328328
\code{\link{scan}}, \code{\link{type.convert}},
329329
\code{\link{read.fwf}} for reading \emph{f}ixed \emph{w}idth

src/library/utils/man/write.table.Rd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ write.csv2(\dots)
157157
}
158158
159159
\seealso{
160-
The \sQuote{R Data Import/Export} manual.
160+
The manual \manual{R-data}{}.
161161
162162
\code{\link{read.table}}, \code{\link{write}}.
163163

0 commit comments

Comments
 (0)