Skip to content

Commit 4b9da59

Browse files
atouchetkhuey
authored andcommitted
Update links
1 parent b4ca04b commit 4b9da59

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ declarations can pair up definitions in one unit with references in another.
1414
Almost all platforms other than Microsoft Windows follow the
1515
[Itanium C++ ABI][itanium]'s rules for this.
1616

17-
[itanium]: https://itanium-cxx-abi.github.io/cxx-abi/abi.html#mangle
17+
[itanium]: https://itanium-cxx-abi.github.io/cxx-abi/abi.html#mangling
1818

1919
For example, suppose a C++ compilation unit has the definition:
2020

src/ast.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1488,7 +1488,7 @@ where
14881488
// whether this is a template.
14891489
//
14901490
// For the details, see
1491-
// http://itanium-cxx-abi.github.io/cxx-abi/abi.html#mangle.function-type
1491+
// https://itanium-cxx-abi.github.io/cxx-abi/abi.html#mangle.function-type
14921492
let scope = if let Some(template_args) = name.get_template_args(ctx.subs) {
14931493
let scope = scope.push(template_args);
14941494
if ctx.show_return_type && !name.is_ctor_dtor_conversion(ctx.subs) {

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
//! another. Almost all platforms other than Microsoft Windows follow the
1111
//! [Itanium C++ ABI][itanium]'s rules for this.
1212
//!
13-
//! [itanium]: https://itanium-cxx-abi.github.io/cxx-abi/abi.html#mangle
13+
//! [itanium]: https://itanium-cxx-abi.github.io/cxx-abi/abi.html#mangling
1414
//!
1515
//! For example, suppose a C++ compilation unit has the definition:
1616
//!

0 commit comments

Comments
 (0)