From 5e21806a3842c68bc33fd31b23c7ddc849fc006a Mon Sep 17 00:00:00 2001 From: Pierre Krieger Date: Tue, 24 Nov 2020 12:40:11 +0100 Subject: [PATCH] Some petty changes head of QUIC (#1854) --- LICENSE | 2 +- core/src/lib.rs | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/LICENSE b/LICENSE index d4bb412c..da846963 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright 2017 Parity Technologies (UK) Ltd. +Copyright 2017-2020 Parity Technologies (UK) Ltd. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in diff --git a/core/src/lib.rs b/core/src/lib.rs index e2836a1e..844fd2a2 100644 --- a/core/src/lib.rs +++ b/core/src/lib.rs @@ -23,14 +23,14 @@ //! The main concepts of libp2p-core are: //! //! - A [`PeerId`] is a unique global identifier for a node on the network. -//! Each node must have a different `PeerId`. Normally, a `PeerId` is the +//! Each node must have a different [`PeerId`]. Normally, a [`PeerId`] is the //! hash of the public key used to negotiate encryption on the //! communication channel, thereby guaranteeing that they cannot be spoofed. //! - The [`Transport`] trait defines how to reach a remote node or listen for -//! incoming remote connections. See the `transport` module. +//! incoming remote connections. See the [`transport`] module. //! - The [`StreamMuxer`] trait is implemented on structs that hold a connection //! to a remote and can subdivide this connection into multiple substreams. -//! See the `muxing` module. +//! See the [`muxing`] module. //! - The [`UpgradeInfo`], [`InboundUpgrade`] and [`OutboundUpgrade`] traits //! define how to upgrade each individual substream to use a protocol. //! See the `upgrade` module.