@@ -66,47 +66,47 @@ pub struct ProgressBarIter<T> {
6666impl < T > ProgressBarIter < T > {
6767 /// Builder-like function for setting underlying progress bar's style.
6868 ///
69- /// See [ProgressBar::with_style].
69+ /// See [` ProgressBar::with_style` ].
7070 pub fn with_style ( mut self , style : ProgressStyle ) -> Self {
7171 self . progress = self . progress . with_style ( style) ;
7272 self
7373 }
7474
7575 /// Builder-like function for setting underlying progress bar's prefix.
7676 ///
77- /// See [ProgressBar::with_prefix].
77+ /// See [` ProgressBar::with_prefix` ].
7878 pub fn with_prefix ( mut self , prefix : impl Into < Cow < ' static , str > > ) -> Self {
7979 self . progress = self . progress . with_prefix ( prefix) ;
8080 self
8181 }
8282
8383 /// Builder-like function for setting underlying progress bar's message.
8484 ///
85- /// See [ProgressBar::with_message].
85+ /// See [` ProgressBar::with_message` ].
8686 pub fn with_message ( mut self , message : impl Into < Cow < ' static , str > > ) -> Self {
8787 self . progress = self . progress . with_message ( message) ;
8888 self
8989 }
9090
9191 /// Builder-like function for setting underlying progress bar's position.
9292 ///
93- /// See [ProgressBar::with_position].
93+ /// See [` ProgressBar::with_position` ].
9494 pub fn with_position ( mut self , position : u64 ) -> Self {
9595 self . progress = self . progress . with_position ( position) ;
9696 self
9797 }
9898
9999 /// Builder-like function for setting underlying progress bar's elapsed time.
100100 ///
101- /// See [ProgressBar::with_elapsed].
101+ /// See [` ProgressBar::with_elapsed` ].
102102 pub fn with_elapsed ( mut self , elapsed : Duration ) -> Self {
103103 self . progress = self . progress . with_elapsed ( elapsed) ;
104104 self
105105 }
106106
107107 /// Builder-like function for setting underlying progress bar's finish behavior.
108108 ///
109- /// See [ProgressBar::with_finish].
109+ /// See [` ProgressBar::with_finish` ].
110110 pub fn with_finish ( mut self , finish : ProgressFinish ) -> Self {
111111 self . progress = self . progress . with_finish ( finish) ;
112112 self
0 commit comments