[Rprotobuf-commits] r912 - in pkg: . vignettes

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Wed Nov 26 04:09:13 CET 2014


Author: edd
Date: 2014-11-26 04:09:13 +0100 (Wed, 26 Nov 2014)
New Revision: 912

Modified:
   pkg/ChangeLog
   pkg/configure.in
   pkg/vignettes/RProtoBuf-intro.Rnw
Log:
* vignettes/RProtoBuf-intro.Rnw: Applied a few corrections spotted by
Tim Hesterberg and communicated in email.


Modified: pkg/ChangeLog
===================================================================
--- pkg/ChangeLog	2014-11-26 02:25:15 UTC (rev 911)
+++ pkg/ChangeLog	2014-11-26 03:09:13 UTC (rev 912)
@@ -1,3 +1,8 @@
+2014-11-25  Dirk Eddelbuettel  <edd at debian.org>
+
+	* vignettes/RProtoBuf-intro.Rnw: Applied a few corrections spotted by
+	Tim Hesterberg and communicated in email.
+
 2014-11-24  Murray Stokely  <mstokely at google.com>
 
 	* inst/unitTests/runit.golden.message.R: remove trailing

Modified: pkg/configure.in
===================================================================
--- pkg/configure.in	2014-11-26 02:25:15 UTC (rev 911)
+++ pkg/configure.in	2014-11-26 03:09:13 UTC (rev 912)
@@ -8,7 +8,7 @@
 AC_PREREQ(2.61)
 
 # Process this file with autoconf to produce a configure script.
-AC_INIT([RProtoBuf],[0.4])
+AC_INIT([RProtoBuf],[0.4.1])
 m4_include([m4/m4-ax_cxx_compile_stdcxx_0x.m4])
 
 # We are using C++

Modified: pkg/vignettes/RProtoBuf-intro.Rnw
===================================================================
--- pkg/vignettes/RProtoBuf-intro.Rnw	2014-11-26 02:25:15 UTC (rev 911)
+++ pkg/vignettes/RProtoBuf-intro.Rnw	2014-11-26 03:09:13 UTC (rev 912)
@@ -367,7 +367,7 @@
 the S4 system, the \verb|@| operator is very rarely used. Fields of the
 message are retrieved or modified using the \verb|$| or \verb|[[| operators
 as seen on the previous section, and pseudo-methods can also
-be called using the \verb|$| operator. The table~\ref{Message-methods-table}
+be called using the \verb|$| operator. Table~\ref{Message-methods-table}
 describes the methods defined for the \texttt{Message} class :
 
 \begin{table}[h]
@@ -431,7 +431,7 @@
 \verb|$| is also used to call methods on the message, and the
 \verb|[[| operator can use the tag number of the field.
 
-The table~\ref{table-get-types} details correspondance between
+Table~\ref{table-get-types} details correspondance between
 the field type and the type of data that is retrieved by \verb|$| and
 \verb|[[|.
 
@@ -495,7 +495,7 @@
 writeLines( message$as.character() )
 @
 
-The table~\ref{table-message-field-setters} describes the R types that
+Table~\ref{table-message-field-setters} describes the R types that
 are allowed in the right hand side depending on the target type of the
 field.
 
@@ -726,8 +726,8 @@
 \subsubsection{Message\$setExtension method}
 \label{Message-method-setExtension}
 
-The \texttt{setExtension} method can be used to get values
-of a repeated field.
+The \texttt{setExtension} method can be used to set an extension field of the
+Message.
 
 <<keep.source=T>>=
 if (!exists("protobuf_unittest.TestAllTypes",
@@ -882,7 +882,7 @@
 \end{table}
 
 Similarly to messages, the \verb|$| operator can be used to extract
-information from the descriptor, or invoke pseuso-methods.
+information from the descriptor, or invoke pseudo-methods.
 Table~\ref{Descriptor-methods-table} describes the methods defined for the \texttt{Descriptor} class :
 
 \begin{table}[h]



More information about the Rprotobuf-commits mailing list