From e641493a2f9db6cfd1576806b86e5d586655dd7c Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Wed, 12 May 2021 17:40:23 -0700 Subject: [PATCH] docs(common): remove favicon doc from sync_wrapper module --- src/common/sync_wrapper.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/common/sync_wrapper.rs b/src/common/sync_wrapper.rs index 05b11e2c4b..704d1a6712 100644 --- a/src/common/sync_wrapper.rs +++ b/src/common/sync_wrapper.rs @@ -1,11 +1,6 @@ /* * This is a copy of the sync_wrapper crate. */ -//! A mutual exclusion primitive that relies on static type information only -//! -//! This library is inspired by [this discussion](https://internals.rust-lang.org/t/what-shall-sync-mean-across-an-await/12020/2). -#![doc(html_logo_url = "https://developer.actyx.com/img/logo.svg")] -#![doc(html_favicon_url = "https://developer.actyx.com/img/favicon.ico")] /// A mutual exclusion primitive that relies on static type information only ///