Skip to content

Commit

Permalink
Fix CInt to Cint in docs (#29834)
Browse files Browse the repository at this point in the history
(cherry picked from commit 82c4fce)
  • Loading branch information
musm authored and KristofferC committed Feb 11, 2019
1 parent b9db718 commit 4284432
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/src/manual/calling-c-and-fortran-code.md
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ b_a_2 = B.A[2];
in Julia:
```julia
struct B
A::NTuple{3, CInt}
A::NTuple{3, Cint}
end
b_a_2 = B.A[3] # note the difference in indexing (1-based in Julia, 0-based in C)
```
Expand Down

0 comments on commit 4284432

Please sign in to comment.