diff options
author | dmalcolm <dmalcolm@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-02-04 14:47:08 +0000 |
---|---|---|
committer | dmalcolm <dmalcolm@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-02-04 14:47:08 +0000 |
commit | 1b60fb1d46dea60f9e6f8218edbb7861f8dfbb02 (patch) | |
tree | 5e238a342c1357732546bae342cdfcd477bb202f /gcc/jit | |
parent | 97c9021f0e10609eea1a4581cfbb323c165b0096 (diff) | |
download | gcc-1b60fb1d46dea60f9e6f8218edbb7861f8dfbb02.tar.gz |
jit: fix typo in docs
gcc/jit/ChangeLog:
* docs/topics/contexts.rst (gcc_jit_context_acquire): Fix
typo.
* docs/_build/texinfo/libgccjit.texi: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@220408 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/jit')
-rw-r--r-- | gcc/jit/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/jit/docs/_build/texinfo/libgccjit.texi | 4 | ||||
-rw-r--r-- | gcc/jit/docs/topics/contexts.rst | 2 |
3 files changed, 9 insertions, 3 deletions
diff --git a/gcc/jit/ChangeLog b/gcc/jit/ChangeLog index f99b5024b95..0ea101de0ca 100644 --- a/gcc/jit/ChangeLog +++ b/gcc/jit/ChangeLog @@ -1,3 +1,9 @@ +2015-02-04 David Malcolm <dmalcolm@redhat.com> + + * docs/topics/contexts.rst (gcc_jit_context_acquire): Fix + typo. + * docs/_build/texinfo/libgccjit.texi: Regenerate. + 2015-02-03 David Malcolm <dmalcolm@redhat.com> * jit-logging.h (gcc::jit::log_user::log): Make const. diff --git a/gcc/jit/docs/_build/texinfo/libgccjit.texi b/gcc/jit/docs/_build/texinfo/libgccjit.texi index 4d05587ae33..37ff69070c9 100644 --- a/gcc/jit/docs/_build/texinfo/libgccjit.texi +++ b/gcc/jit/docs/_build/texinfo/libgccjit.texi @@ -19,7 +19,7 @@ @copying @quotation -libgccjit 5.0.0 (experimental 20150203), February 03, 2015 +libgccjit 5.0.0 (experimental 20150204), February 04, 2015 David Malcolm @@ -4925,7 +4925,7 @@ cleanup of such objects is done for you when the context is released. @anchor{topics/contexts gcc_jit_context_acquire}@anchor{9} @deffn {C Function} gcc_jit_context *gcc_jit_context_acquire (void) -This function acquires a new @pxref{e,,gcc_jit_object *} instance, +This function acquires a new @pxref{8,,gcc_jit_context *} instance, which is independent of any others that may be present within this process. @end deffn diff --git a/gcc/jit/docs/topics/contexts.rst b/gcc/jit/docs/topics/contexts.rst index cc5207770f1..46a08bdba4c 100644 --- a/gcc/jit/docs/topics/contexts.rst +++ b/gcc/jit/docs/topics/contexts.rst @@ -39,7 +39,7 @@ cleanup of such objects is done for you when the context is released. .. function:: gcc_jit_context *gcc_jit_context_acquire (void) - This function acquires a new :c:type:`gcc_jit_object *` instance, + This function acquires a new :c:type:`gcc_jit_context *` instance, which is independent of any others that may be present within this process. |