]> git.proxmox.com Git - rustc.git/blobdiff - src/doc/book/const-and-static.md
Imported Upstream version 1.9.0+dfsg1
[rustc.git] / src / doc / book / const-and-static.md
index b7042854bd27fc0248c47cdf769cf1c1a4fe7f67..08ff3894c9db57fcb4d7e062a76f30532952c20d 100644 (file)
@@ -72,7 +72,7 @@ a [`Drop`][drop] implementation.
 # Initializing
 
 Both `const` and `static` have requirements for giving them a value. They must
-be given a value that’s a constant expression. In other words, you cannot use 
+be given a value that’s a constant expression. In other words, you cannot use
 the result of a function call or anything similarly complex or at runtime.
 
 # Which construct should I use?