about summary refs log tree commit diff
path: root/library/core/src/array
diff options
context:
space:
mode:
authorRustin-Liu <rustin.liu@gmail.com>2020-10-25 17:46:45 +0800
committerRustin-Liu <rustin.liu@gmail.com>2020-10-26 22:39:43 +0800
commit42844ed2cf4ca0ff2a9271e0aaa8e5910c5f4ccd (patch)
treee37b3557e4bc43b1791dcb9bfd1b364fb887454a /library/core/src/array
parentb9a94c919b8cb09c186ff253360df91f223f6ef3 (diff)
downloadrust-42844ed2cf4ca0ff2a9271e0aaa8e5910c5f4ccd.tar.gz
rust-42844ed2cf4ca0ff2a9271e0aaa8e5910c5f4ccd.zip
Add lexicographical comparison doc
Add links

Fix typo

Use `sequence`

Fix typo

Fix broken link

Fix broken link

Fix broken link

Fix broken links

Fix broken links
Diffstat (limited to 'library/core/src/array')
-rw-r--r--library/core/src/array/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/array/mod.rs b/library/core/src/array/mod.rs
index 966272ca115..1d55a5ef659 100644
--- a/library/core/src/array/mod.rs
+++ b/library/core/src/array/mod.rs
@@ -344,7 +344,7 @@ impl<T: PartialOrd, const N: usize> PartialOrd for [T; N] {
     }
 }
 
-/// Implements comparison of arrays lexicographically.
+/// Implements comparison of arrays [lexicographically](Ord#lexicographical-comparison).
 #[stable(feature = "rust1", since = "1.0.0")]
 impl<T: Ord, const N: usize> Ord for [T; N] {
     #[inline]