You've already forked comprehensive-rust
mirror of
https://github.com/google/comprehensive-rust.git
synced 2025-12-22 22:51:12 +02:00
Fix a broken link and check internal links (#2195)
In #2153 I aimed to fix a link but broke it. In this PR, I fix it and add [`mdbook-linkcheck`](https://github.com/Michael-F-Bryan/mdbook-linkcheck) to avoid future cases. Some past fixes that could have been prevented, in addition to mine in this PR: * #811 * #2064 * #2146 Note: `mdbook-linkcheck` may also check external links with a configuration change. It can be beneficial to check also external links from time to time. I ran it here and found 3 broken links. Maintainers - sorry for the lack of a preceding issue. We can discuss it here. Some remaining work is to fix the outdated internal links in the translations, not done here. Let me know what you think about the proposed contribution. This PR completes #1502.
This commit is contained in:
@@ -13,8 +13,8 @@ signature:
|
||||
<details>
|
||||
|
||||
- In Android 13 or higher, fixed-size arrays are supported, i.e. `T[N]` becomes
|
||||
`[T; N]`. Fixed-size arrays can have multiple dimensions (e.g. int[3][4]). In
|
||||
the Java backend, fixed-size arrays are represented as array types.
|
||||
`[T; N]`. Fixed-size arrays can have multiple dimensions (e.g. `int[3][4]`).
|
||||
In the Java backend, fixed-size arrays are represented as array types.
|
||||
- Arrays in parcelable fields always get translated to `Vec<T>`.
|
||||
|
||||
</details>
|
||||
|
||||
@@ -19,7 +19,7 @@ fn main() {
|
||||
```
|
||||
|
||||
We already saw this in the
|
||||
[Safe FFI Wrapper exercise](../../exercises/day-3/safe-ffi-wrapper.md).
|
||||
[Safe FFI Wrapper exercise](../../unsafe-rust/exercise.md).
|
||||
|
||||
> This assumes full knowledge of the target platform. Not recommended for
|
||||
> production.
|
||||
|
||||
Reference in New Issue
Block a user