diff --git a/book/src/contributing.md b/book/src/contributing.md index 1f00bc9d6..e95ca5ad2 100644 --- a/book/src/contributing.md +++ b/book/src/contributing.md @@ -80,7 +80,7 @@ in reporting the bug is much appreciated and will make `autocxx` better. In order of preference here's how we would like to hear about your problem: * Raise a pull request adding a new failing integration test to - `engine/src/integration_tests.rs`. + [`integration_test.rs`](https://github.com/google/autocxx/blob/main/integration-tests/tests/integration_test.rs) * Minimize the test using `tools/reduce`, something like this: `target/debug/autocxx-reduce file -d "safety!(unsafe_ffi)" -d 'generate_pod!("A")' -I ~/my-include-dir -h my-header.h -p diff --git a/book/src/tutorial.md b/book/src/tutorial.md index 3f3826e97..cd4c22b89 100644 --- a/book/src/tutorial.md +++ b/book/src/tutorial.md @@ -15,7 +15,9 @@ You will need: The rest of this 'getting started' section assumes Cargo - if you're using something else, see the [building](building.md) section. -First, add `autocxx` *and `cxx`* to your `dependencies` and `autocxx-build` to your `build-dependencies` in your `Cargo.toml`. +First, add `autocxx` *and `cxx`* to your `dependencies` and `autocxx-build` to your `build-dependencies` in your `Cargo.toml`. **You must specify both.** + + ```toml [dependencies]