File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change 58
58
//! # Example
59
59
//!
60
60
//! A runnable version of this example is provided under the *demo* directory of
61
- //! [ https://github.com/dtolnay/cxx] . To try it out, run `cargo run` from that
61
+ //! < https://github.com/dtolnay/cxx> . To try it out, run `cargo run` from that
62
62
//! directory.
63
63
//!
64
64
//! ```no_run
253
253
//! For use in non-Cargo builds like Bazel or Buck, CXX provides an alternate
254
254
//! way of invoking the C++ code generator as a standalone command line tool.
255
255
//! The tool is packaged as the `cxxbridge-cmd` crate on crates.io or can be
256
- //! built from the *gen/cmd* directory of [ https://github.com/dtolnay/cxx] .
256
+ //! built from the *gen/cmd* directory of < https://github.com/dtolnay/cxx> .
257
257
//!
258
258
//! ```bash
259
259
//! $ cargo install cxxbridge-cmd
328
328
//! </table>
329
329
//!
330
330
//! The C++ API of the `rust` namespace is defined by the *include/cxx.h* file
331
- //! in [ https://github.com/dtolnay/cxx] . You will need to include this header in
331
+ //! in < https://github.com/dtolnay/cxx> . You will need to include this header in
332
332
//! your C++ code when working with those types.
333
333
//!
334
334
//! The following types are intended to be supported "soon" but are just not
345
345
//! <tr><td><sup><i>tbd</i></sup></td><td>std::unordered_map<K, V></td></tr>
346
346
//! <tr><td><sup><i>tbd</i></sup></td><td>std::shared_ptr<T></td></tr>
347
347
//! </table>
348
- //!
349
- //! [https://github.com/dtolnay/cxx]: https://github.com/dtolnay/cxx
350
348
351
349
#![ no_std]
352
350
#![ doc( html_root_url = "https://docs.rs/cxx/0.5.8" ) ]
You can’t perform that action at this time.
0 commit comments