This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
[PATCH, committed] jit: fix some .rst issues in docs
- From: David Malcolm <dmalcolm at redhat dot com>
- To: jit at gcc dot gnu dot org, gcc-patches at gcc dot gnu dot org
- Cc: David Malcolm <dmalcolm at redhat dot com>
- Date: Tue, 30 Jun 2015 15:24:19 -0400
- Subject: [PATCH, committed] jit: fix some .rst issues in docs
- Authentication-results: sourceware.org; auth=none
gcc/jit/ChangeLog:
* docs/cp/topics/expressions.rst: Remove stray semicolon.
* docs/cp/topics/functions.rst: Remove stray backslash.
* docs/_build/texinfo/libgccjit.texi: Regenerate.
Committed to trunk as r225203.
---
gcc/jit/docs/cp/topics/expressions.rst | 2 +-
gcc/jit/docs/cp/topics/functions.rst | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/gcc/jit/docs/cp/topics/expressions.rst b/gcc/jit/docs/cp/topics/expressions.rst
index 4ea2622..ac8d4f1 100644
--- a/gcc/jit/docs/cp/topics/expressions.rst
+++ b/gcc/jit/docs/cp/topics/expressions.rst
@@ -535,7 +535,7 @@ If you don't need to specify the location, this can also be expressed using
an overloaded operator:
.. function:: gccjit::lvalue \
- gccjit::rvalue::operator* ();
+ gccjit::rvalue::operator* ()
.. code-block:: c++
diff --git a/gcc/jit/docs/cp/topics/functions.rst b/gcc/jit/docs/cp/topics/functions.rst
index a31b278..de3570a 100644
--- a/gcc/jit/docs/cp/topics/functions.rst
+++ b/gcc/jit/docs/cp/topics/functions.rst
@@ -52,7 +52,7 @@ Functions
const char *name, \
std::vector<param> ¶ms, \
int is_variadic, \
- gccjit::location loc) \
+ gccjit::location loc)
Create a gcc_jit_function with the given name and parameters.
--
1.8.5.3