From 49adbc49ac769d37817051dac0eecd145babfee7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20Sch=C3=A4fer?= Date: Tue, 18 Jun 2024 17:18:48 +0200 Subject: [PATCH] xso: make newlines after module comments consistent with other crates --- xso/src/error.rs | 1 + xso/src/lib.rs | 1 + xso/src/minidom_compat.rs | 1 + 3 files changed, 3 insertions(+) diff --git a/xso/src/error.rs b/xso/src/error.rs index b1ea2cf..c2340b8 100644 --- a/xso/src/error.rs +++ b/xso/src/error.rs @@ -3,6 +3,7 @@ This module contains the error types used throughout the `xso` crate. */ + // Copyright (c) 2024 Jonas Schäfer // // This Source Code Form is subject to the terms of the Mozilla Public diff --git a/xso/src/lib.rs b/xso/src/lib.rs index 81d9b00..cd4b5f9 100644 --- a/xso/src/lib.rs +++ b/xso/src/lib.rs @@ -13,6 +13,7 @@ advanced XML scenarios. XSO is an acronym for XML Stream(ed) Objects, referring to the main field of use of this library in parsing XML streams like specified in RFC 6120. */ + // Copyright (c) 2024 Jonas Schäfer // // This Source Code Form is subject to the terms of the Mozilla Public diff --git a/xso/src/minidom_compat.rs b/xso/src/minidom_compat.rs index bbe0e19..9bd5ce4 100644 --- a/xso/src/minidom_compat.rs +++ b/xso/src/minidom_compat.rs @@ -1,4 +1,5 @@ //! Implementations of traits from this crate for minidom types + // Copyright (c) 2024 Jonas Schäfer // // This Source Code Form is subject to the terms of the Mozilla Public