From 3a78bea16c49498aa72be375cd34bb9ab4a07479 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Bartelme=C3=9F?= Date: Fri, 13 Oct 2017 21:06:20 +0200 Subject: [PATCH] Update 1444-union.md --- text/1444-union.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/text/1444-union.md b/text/1444-union.md index 75dfe8e8066..59263725c81 100644 --- a/text/1444-union.md +++ b/text/1444-union.md @@ -277,7 +277,7 @@ require explicitly specifying them. ## Unions and undefined behavior Rust code must not use unions to invoke [undefined -behavior](https://doc.rust-lang.org/nightly/reference.html#behavior-considered-undefined). +behavior](https://doc.rust-lang.org/nightly/reference/behavior-considered-undefined.html). In particular, Rust code must not use unions to break the pointer aliasing rules with raw pointers, or access a field containing a primitive type with an invalid value.