From 9a83067d04c9648416b92fc8d7b8a542b0b9aa96 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Thu, 10 Jan 2019 21:39:25 -0800 Subject: code docs/comments and rustfmt --- rust/src/editing.rs | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'rust/src/editing.rs') diff --git a/rust/src/editing.rs b/rust/src/editing.rs index 9dac30ac..4fca30d6 100644 --- a/rust/src/editing.rs +++ b/rust/src/editing.rs @@ -1,8 +1,13 @@ +//! Helpers and types for dealing with the edit lifecycle. +//! +//! Does not contain the core code for creating/updating/reading/deleting the Editor, Annotation, +//! and Changelog objects, which lives under `editing_crud`. + use crate::database_models::*; use crate::database_schema::*; use crate::entity_crud::EntityCrud; -use crate::errors::{Result, FatcatError}; -use crate::identifiers::{FatcatId, check_username}; +use crate::errors::{FatcatError, Result}; +use crate::identifiers::{check_username, FatcatId}; use crate::server::DbConn; use diesel; use diesel::prelude::*; -- cgit v1.2.3