File tree 1 file changed +4
-4
lines changed
library/alloc/src/collections
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -658,7 +658,7 @@ impl<T> LinkedList<T> {
658
658
/// Provides a reference to the front element, or `None` if the list is
659
659
/// empty.
660
660
///
661
- /// This operation should compute in *O*(*1* ) time.
661
+ /// This operation should compute in *O*(1 ) time.
662
662
///
663
663
/// # Examples
664
664
///
@@ -680,7 +680,7 @@ impl<T> LinkedList<T> {
680
680
/// Provides a mutable reference to the front element, or `None` if the list
681
681
/// is empty.
682
682
///
683
- /// This operation should compute in *O*(*1* ) time.
683
+ /// This operation should compute in *O*(1 ) time.
684
684
///
685
685
/// # Examples
686
686
///
@@ -708,7 +708,7 @@ impl<T> LinkedList<T> {
708
708
/// Provides a reference to the back element, or `None` if the list is
709
709
/// empty.
710
710
///
711
- /// This operation should compute in *O*(*1* ) time.
711
+ /// This operation should compute in *O*(1 ) time.
712
712
///
713
713
/// # Examples
714
714
///
@@ -730,7 +730,7 @@ impl<T> LinkedList<T> {
730
730
/// Provides a mutable reference to the back element, or `None` if the list
731
731
/// is empty.
732
732
///
733
- /// This operation should compute in *O*(*1* ) time.
733
+ /// This operation should compute in *O*(1 ) time.
734
734
///
735
735
/// # Examples
736
736
///
You can’t perform that action at this time.
0 commit comments