@@ -219,7 +219,8 @@ impl EventScannerBuilder<Unspecified> {
219219 /// EventScannerBuilder::sync().from_latest(10);
220220 /// ```
221221 ///
222- /// See the [sync module documentation](sync) for details on each mode.
222+ /// See [`from_block`](EventScannerBuilder::from_block) and
223+ /// [`from_latest`](EventScannerBuilder::from_latest) for details on each mode.
223224 #[ must_use]
224225 pub fn sync ( ) -> EventScannerBuilder < Synchronize > {
225226 EventScannerBuilder :: default ( )
@@ -319,7 +320,7 @@ impl EventScannerBuilder<Unspecified> {
319320 /// [subscribe]: EventScanner::subscribe
320321 /// [start]: EventScanner::start
321322 /// [sync_from_latest]: EventScannerBuilder::from_latest
322- /// [reorg]: ScannerStatus::ReorgDetected
323+ /// [reorg]: crate:: ScannerStatus::ReorgDetected
323324 #[ must_use]
324325 pub fn latest ( count : usize ) -> EventScannerBuilder < LatestEvents > {
325326 EventScannerBuilder :: < LatestEvents > :: new ( count)
@@ -367,7 +368,7 @@ impl EventScannerBuilder<SyncFromBlock> {
367368impl < M > EventScannerBuilder < M > {
368369 /// Connects to the provider via WebSocket.
369370 ///
370- /// Final builder method: consumes the builder and returns the built [`HistoricEventScanner `].
371+ /// Final builder method: consumes the builder and returns the built [`EventScanner `].
371372 ///
372373 /// # Errors
373374 ///
@@ -379,7 +380,7 @@ impl<M> EventScannerBuilder<M> {
379380
380381 /// Connects to the provider via IPC.
381382 ///
382- /// Final builder method: consumes the builder and returns the built [`HistoricEventScanner `].
383+ /// Final builder method: consumes the builder and returns the built [`EventScanner `].
383384 ///
384385 /// # Errors
385386 ///
@@ -394,7 +395,7 @@ impl<M> EventScannerBuilder<M> {
394395
395396 /// Connects to an existing provider.
396397 ///
397- /// Final builder method: consumes the builder and returns the built [`HistoricEventScanner `].
398+ /// Final builder method: consumes the builder and returns the built [`EventScanner `].
398399 ///
399400 /// # Errors
400401 ///
0 commit comments