From c358f33ee0fbeafcbf05ddd78676ff5cd0aad105 Mon Sep 17 00:00:00 2001 From: Pierre Massat Date: Thu, 25 Jul 2024 10:49:17 -0400 Subject: [PATCH] Fix lint --- relay-base-schema/src/project.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/relay-base-schema/src/project.rs b/relay-base-schema/src/project.rs index c47790de89a..73c32a70d43 100644 --- a/relay-base-schema/src/project.rs +++ b/relay-base-schema/src/project.rs @@ -1,9 +1,9 @@ //! Contains [`ProjectKey`] and [`ProjectId`] types and necessary traits implementations. //! //! - [`ProjectId`] is the unique identifier of a Sentry project. Currently, it is just a wrapper -//! over `u64` and should be considered as implementations details, as it can change in the future. +//! over `u64` and should be considered as implementations details, as it can change in the future. //! - [`ProjectKey`] is a byte array (`[u8; 32]`) and represents a DSN to identify and authenticate -//! a project at Sentry. +//! a project at Sentry. use std::error::Error; use std::fmt;