Skip to content

Commit 72fb626

Browse files
committed
Add redirect for slice-dst-pointer-to-pointer-cast
1 parent 8c7cdd3 commit 72fb626

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

src/expressions/operator-expr.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -695,3 +695,17 @@ See [this test] for an example of using this dependency.
695695
[_TypeNoBounds_]: ../types.md#type-expressions
696696
[_RangeExpression_]: ./range-expr.md
697697
[_UnderscoreExpression_]: ./underscore-expr.md
698+
699+
<script>
700+
(function() {
701+
var fragments = {
702+
"#slice-dst-pointer-to-pointer-cast": "operator-expr.html#pointer-to-pointer-cast",
703+
};
704+
var target = fragments[window.location.hash];
705+
if (target) {
706+
var url = window.location.toString();
707+
var base = url.substring(0, url.lastIndexOf('/'));
708+
window.location.replace(base + "/" + target);
709+
}
710+
})();
711+
</script>

0 commit comments

Comments
 (0)