about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorPascal Hertleif <killercup@gmail.com>2015-05-15 12:23:26 +0200
committerPascal Hertleif <killercup@gmail.com>2015-05-15 12:23:26 +0200
commit7d0ae692c91150ea854ebfaaeef6de0bbaca55f7 (patch)
tree0411cbe0388912205536ed82eb007e71654f6728 /src
parent072cba9a536013534352bceddbb417b3df41e8da (diff)
downloadrust-7d0ae692c91150ea854ebfaaeef6de0bbaca55f7.tar.gz
rust-7d0ae692c91150ea854ebfaaeef6de0bbaca55f7.zip
TRPL: Remove Duplicate Reference
Pandoc shows a warning for this. I'm not sure if it's actually invalid Markdown.
Diffstat (limited to 'src')
-rw-r--r--src/doc/trpl/const-and-static.md2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/doc/trpl/const-and-static.md b/src/doc/trpl/const-and-static.md
index be0c87319b3..f8630dcfc53 100644
--- a/src/doc/trpl/const-and-static.md
+++ b/src/doc/trpl/const-and-static.md
@@ -31,8 +31,6 @@ static N: i32 = 5;
 
 Unlike [`let`][let] bindings, you must annotate the type of a `static`.
 
-[let]: variable-bindings.html
-
 Statics live for the entire lifetime of a program, and therefore any
 reference stored in a constant has a [`’static` lifetime][lifetimes]: