Remove broken links

That's awkward: you can't mention items from teloxide in teloxide-core
This commit is contained in:
Maybe Waffle 2024-03-23 17:22:41 +01:00
parent 43b1f8445a
commit 887f74de40

View file

@ -681,15 +681,13 @@ impl_api_error! {
///
/// This can happen if
/// 1. You are running multiple bot instances
/// 2. You are running multiple update consumers (like [`Dispatcher`] or [`repl`])
/// 2. You are running multiple update consumers (like `Dispatcher` or `repl`)
/// 3. You are calling [`GetUpdates`] yourself and the second call is done before the first one finishes
///
/// May happen in methods:
/// 1. [`GetUpdates`]
///
/// [`GetUpdates`]: crate::payloads::GetUpdates
/// [`Dispatcher`]: crate::dispatching::Dispatcher
/// [`repl`]: crate::repl
TerminatedByOtherGetUpdates = "Conflict: terminated by other getUpdates request; make sure that only one bot instance \
is running",