Skip to content

Commit

Permalink
Fix a formatting error in #14930
Browse files Browse the repository at this point in the history
  • Loading branch information
jiahao committed Feb 5, 2016
1 parent a990a73 commit 641f923
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/manual/calling-c-and-fortran-code.rst
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,7 @@ data should be declared to be of type ``T`` inside the :func:`ccall`, as they
are passed by value. For C code accepting pointers, ``Ref{T}`` should
generally be used for the types of input arguments, allowing the use of
pointers to memory managed by either Julia or C through the implicit call to
:func:``cconvert``. In contrast, pointers returned by the C function called
:func:`cconvert`. In contrast, pointers returned by the C function called
should be declared to be of output type ``Ptr{T}``, reflecting that the memory
pointed to is managed by C only. Pointers contained in C structs should be
represented as fields of type ``Ptr{T}`` within the corresponding Julia
Expand Down

0 comments on commit 641f923

Please sign in to comment.