# HG changeset patch # User Raphaël Gomès # Date 1562676814 -7200 # Node ID 4b3b27d567d534cf880185b5524d998ce666f25f # Parent 849e744b925d2afcb6527ab812016df1f67925f9 rust-docstrings: add missing module docstrings Differential Revision: https://phab.mercurial-scm.org/D6630 diff -r 849e744b925d -r 4b3b27d567d5 rust/hg-core/src/filepatterns.rs --- a/rust/hg-core/src/filepatterns.rs Wed Jul 17 11:37:43 2019 +0200 +++ b/rust/hg-core/src/filepatterns.rs Tue Jul 09 14:53:34 2019 +0200 @@ -1,3 +1,12 @@ +// filepatterns.rs +// +// Copyright 2019 Raphaël Gomès +// +// This software may be used and distributed according to the terms of the +// GNU General Public License version 2 or any later version. + +//! Handling of Mercurial-specific patterns. + use crate::{ utils::{files::get_path_from_bytes, SliceExt}, LineNumber, PatternError, PatternFileError, diff -r 849e744b925d -r 4b3b27d567d5 rust/hg-core/src/utils.rs --- a/rust/hg-core/src/utils.rs Wed Jul 17 11:37:43 2019 +0200 +++ b/rust/hg-core/src/utils.rs Tue Jul 09 14:53:34 2019 +0200 @@ -1,3 +1,12 @@ +// utils module +// +// Copyright 2019 Raphaël Gomès +// +// This software may be used and distributed according to the terms of the +// GNU General Public License version 2 or any later version. + +//! Contains useful functions, traits, structs, etc. for use in core. + pub mod files; use std::convert::AsMut; diff -r 849e744b925d -r 4b3b27d567d5 rust/hg-core/src/utils/files.rs --- a/rust/hg-core/src/utils/files.rs Wed Jul 17 11:37:43 2019 +0200 +++ b/rust/hg-core/src/utils/files.rs Tue Jul 09 14:53:34 2019 +0200 @@ -1,3 +1,14 @@ +// files.rs +// +// Copyright 2019 +// Raphaël Gomès , +// Yuya Nishihara +// +// This software may be used and distributed according to the terms of the +// GNU General Public License version 2 or any later version. + +//! Functions for fiddling with files. + use std::iter::FusedIterator; use std::path::Path;