about summary refs log tree commit diff
path: root/library/alloc/tests/sort
diff options
context:
space:
mode:
authorchloefeal <188809157+chloefeal@users.noreply.github.com>2024-12-27 21:35:57 +0800
committerchloefeal <188809157+chloefeal@users.noreply.github.com>2024-12-27 21:35:57 +0800
commite1b65be4177486979bab4a05f520e0c013b831b4 (patch)
tree247bf2b79069671fe514cd17342943610463f642 /library/alloc/tests/sort
parent42591a4cc0ccfc487b5f0813a77c79137fd10eb5 (diff)
downloadrust-e1b65be4177486979bab4a05f520e0c013b831b4.tar.gz
rust-e1b65be4177486979bab4a05f520e0c013b831b4.zip
Fix typos
Signed-off-by: chloefeal <188809157+chloefeal@users.noreply.github.com>
Diffstat (limited to 'library/alloc/tests/sort')
-rw-r--r--library/alloc/tests/sort/tests.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/alloc/tests/sort/tests.rs b/library/alloc/tests/sort/tests.rs
index 14e6013f965..206624e59ea 100644
--- a/library/alloc/tests/sort/tests.rs
+++ b/library/alloc/tests/sort/tests.rs
@@ -33,7 +33,7 @@ fn check_is_sorted<T: Ord + Clone + Debug, S: Sort>(v: &mut [T]) {
             known_good_stable_sort::sort(known_good_sorted_vec.as_mut_slice());
 
             if is_small_test {
-                eprintln!("Orginal:  {:?}", v_orig);
+                eprintln!("Original:  {:?}", v_orig);
                 eprintln!("Expected: {:?}", known_good_sorted_vec);
                 eprintln!("Got:      {:?}", v);
             } else {