about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorMark Mansi <markm@cs.wisc.edu>2018-02-25 15:42:25 -0600
committerMark Mansi <markm@cs.wisc.edu>2018-02-25 15:42:25 -0600
commit7a82da1c4d3c5cb3e7bfa0dc43337842a677943c (patch)
tree1015a6382daaf441f4a9e863fe8f35a02505b5aa /src
parentd6f22a248106b0ade754ad1e3573fac2ebb8f182 (diff)
downloadrust-7a82da1c4d3c5cb3e7bfa0dc43337842a677943c.tar.gz
rust-7a82da1c4d3c5cb3e7bfa0dc43337842a677943c.zip
tidy fix
Diffstat (limited to 'src')
-rw-r--r--src/librustc/traits/select.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/librustc/traits/select.rs b/src/librustc/traits/select.rs
index 3ffde1521b9..22e23cc012b 100644
--- a/src/librustc/traits/select.rs
+++ b/src/librustc/traits/select.rs
@@ -1029,7 +1029,8 @@ impl<'cx, 'gcx, 'tcx> SelectionContext<'cx, 'gcx, 'tcx> {
     // caller obligations, and so forth and assembling a list of
     // candidates. See [rustc guide] for more details.
     //
-    // [rustc guide]: https://rust-lang-nursery.github.io/rustc-guide/trait-resolution.html#candidate-assembly
+    // [rustc guide]:
+    // https://rust-lang-nursery.github.io/rustc-guide/trait-resolution.html#candidate-assembly
 
     fn candidate_from_obligation<'o>(&mut self,
                                      stack: &TraitObligationStack<'o, 'tcx>)
@@ -2317,7 +2318,8 @@ impl<'cx, 'gcx, 'tcx> SelectionContext<'cx, 'gcx, 'tcx> {
     // with the values found in the obligation, possibly yielding a
     // type error.  See [rustc guide] for more details.
     //
-    // [rustc guide]: https://rust-lang-nursery.github.io/rustc-guide/trait-resolution.html#confirmation
+    // [rustc guide]:
+    // https://rust-lang-nursery.github.io/rustc-guide/trait-resolution.html#confirmation
 
     fn confirm_candidate(&mut self,
                          obligation: &TraitObligation<'tcx>,