From eb0006a4b9f089ae4b3c2d41b9422bddd33b6a0e Mon Sep 17 00:00:00 2001 From: covercash2 Date: Mon, 1 Jun 2020 12:48:36 -0700 Subject: [PATCH] fix broken link in documentation --- CHANGELOG.md | 2 ++ druid/src/command.rs | 1 + 2 files changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index bf2abaadf1..70ad5d00f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,8 @@ You can find its changes [documented below](#060---2020-06-01). ### Fixed +- Fixed a link in `druid::command` documentation. ([#1008] by [@covercash2]) + ### Visual ### Docs diff --git a/druid/src/command.rs b/druid/src/command.rs index 0b010973c9..ac501b5f93 100644 --- a/druid/src/command.rs +++ b/druid/src/command.rs @@ -307,6 +307,7 @@ impl Command { /// Panics when the payload has a different type, than what the selector is supposed to carry. /// This can happen when two selectors with different types but the same key are used. /// + /// [`is`]: #method.is /// [`get_unchecked`]: #method.get_unchecked pub fn get(&self, selector: Selector) -> Option<&T> { if self.symbol == selector.symbol() {