Skip to content

Commit

Permalink
Fix book URI.
Browse files Browse the repository at this point in the history
  • Loading branch information
adetaylor committed Feb 28, 2022
1 parent 464b278 commit 22458f9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ This project is a tool for calling C++ from Rust in a heavily automated, but saf

The intention is that it has all the fluent safety from [cxx](https://cxx.rs) whilst generating interfaces automatically from existing C++ headers using a variant of [bindgen](https://docs.rs/bindgen/latest/bindgen/). Think of autocxx as glue which plugs bindgen into cxx.

For full documentation, see [the manual](https://autocxx.github.io/).
For full documentation, see [the manual](https://google.github.io/autocxx/).

# Overview

Expand Down
2 changes: 1 addition & 1 deletion book/book.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ command = "../target/debug/autocxx-mdbook-preprocessor"
command = "mdbook-mermaid"

[output.html]
cname = "autocxx.github.io"
cname = "google.github.io/autocxx"
git-repository-url = "https://github.com/google/autocxx"
additional-js = ["mermaid.min.js", "mermaid-init.js"]
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ use autocxx_engine::IncludeCppEngine;
/// that's gone into the [cxx] crate, such bindings are pleasant and idiomatic to use
/// from Rust, and usually don't require the `unsafe` keyword.
///
/// For full documentation, see [the manual](https://autocxx.github.io/).
/// For full documentation, see [the manual](https://google.github.io/autocxx/).
///
/// # The [`include_cpp`] macro
///
Expand Down

0 comments on commit 22458f9

Please sign in to comment.