From c09da41ef4b45ac904007b54218fbc82befe0453 Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Fri, 23 Mar 2018 20:46:11 +0100 Subject: [PATCH] ref: Some small doc updates --- src/lib.rs | 2 +- src/protocol/v7.rs | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 3b6bfcdd..7e649a10 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,6 +1,6 @@ //! This crate provides common types for working with the Sentry protocol or the //! Sentry server. It's used by the sentry relay infrastructure as well as the -//! rust Sentry client/. +//! rust Sentry client. #![warn(missing_docs)] extern crate chrono; extern crate failure; diff --git a/src/protocol/v7.rs b/src/protocol/v7.rs index 26a85f3c..5c82d205 100644 --- a/src/protocol/v7.rs +++ b/src/protocol/v7.rs @@ -1,4 +1,9 @@ //! The current latest sentry protocol version. +//! +//! Most constructs in the protocol map directly to types here but some +//! cleanup by renaming attributes has been applied. The idea here is that +//! a future sentry protocol will be a cleanup of the old one and is mapped +//! to similar values on the rust side. use std::fmt; use std::collections::HashMap; use std::net::IpAddr;