Skip to content

Commit 6de10cf

Browse files
committed
merge
1 parent 6394367 commit 6de10cf

File tree

54 files changed

+17097
-47
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+17097
-47
lines changed

module/alias/willbe2/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#[ allow( unused_imports ) ]
1010
use ::willbe2::*;
1111

12-
// fn main() -> Result< (), wtools::error::untyped::Error >
12+
// fn main() -> Result< (), wtools::error::untyped::Error >
1313
// {
1414
// Ok( willbe::run()? )
1515
// }

module/alias/wtest/src/test/commands/smoke.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ impl< 'a > SmokeModuleTest< 'a >
223223
self
224224
}
225225

226-
fn form( &mut self ) -> Result< (), &'static str >
226+
fn form( &mut self ) -> Result< (), &'static str >
227227
{
228228
std ::fs ::create_dir( &self.test_path ).unwrap();
229229

module/core/asbytes/src/into_bytes.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ mod private
55
pub use bytemuck :: { Pod };
66

77
/// Trait for consuming data into an owned byte vector.
8-
/// This trait is for types that can be meaningfully converted into a `Vec< u8 >`
8+
/// This trait is for types that can be meaningfully converted into a `Vec< u8 >`
99
/// by consuming the original value.
1010
pub trait IntoBytes {
1111
/// Consumes the value and returns its byte representation as an owned `Vec< u8 >`.

module/core/component_model_types/src/component.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ pub trait Assign< T, IntoT >
8989
/// }
9090
/// }
9191
///
92-
/// let mut opt_struct: Option< MyStruct > = None;
92+
/// let mut opt_struct: Option< MyStruct > = None;
9393
/// opt_struct.option_assign( MyStruct { name: "New Name".to_string() } );
9494
/// assert_eq!( opt_struct.unwrap().name, "New Name" );
9595
/// ```

module/core/format_tools/src/format/as_table.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ mod private
166166
}
167167

168168
// impl< Row > IntoAsTable
169-
// for Vec< Row >
169+
// for Vec< Row >
170170
// where
171171
// Row: Cells< Self ::CellKey >,
172172
// // CellKey: table ::CellKey + ?Sized,

module/core/format_tools/src/format/test_object_without_impl.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ impl Hash for TestObjectWithoutImpl
9595
impl PartialOrd for TestObjectWithoutImpl
9696
{
9797

98-
fn partial_cmp( &self, other: &Self ) -> Option< Ordering >
98+
fn partial_cmp( &self, other: &Self ) -> Option< Ordering >
9999
{
100100
Some( self.cmp( other ) )
101101
}
@@ -116,7 +116,7 @@ impl Ord for TestObjectWithoutImpl
116116
}
117117

118118
/// Generate a dynamic array of test objects.
119-
pub fn test_objects_gen() -> Vec< TestObjectWithoutImpl >
119+
pub fn test_objects_gen() -> Vec< TestObjectWithoutImpl >
120120
{
121121

122122
vec!

module/core/format_tools/src/format/text_wrap.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ mod private
4949
/// too literally. That is why `wrap_width` is introduced, and additional spaces to the
5050
/// right side should be included by the output formatter.
5151
#[ derive( Debug ) ]
52-
pub struct WrappedCell< 'data >
52+
pub struct WrappedCell< 'data >
5353
{
5454
/// Width of the cell. In calculations use this width instead of slice length in order
5555
/// to properly center the text. See example in the doc string of the parent struct.

module/core/former_meta/src/derive_former/struct_attrs.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ impl ItemAttributes
261261
/// < T: ` ::core ::default ::Default` >
262262
///
263263
/// ## `perform_generics` :
264-
/// Vec< T >
264+
/// Vec< T >
265265
///
266266
#[ allow( clippy ::unnecessary_wraps ) ]
267267
pub fn performer( &self ) -> Result< (TokenStream, TokenStream, TokenStream) >
@@ -611,7 +611,7 @@ impl syn ::parse ::Parse for ItemAttributes
611611
///
612612
/// Attribute to hold information about method to call after form.
613613
///
614-
/// `#[ perform( fn after1< 'a >() -> Option< &'a str > ) ]`
614+
/// `#[ perform( fn after1< 'a >() -> Option< &'a str > ) ]`
615615
///
616616
#[ derive( Debug ) ]
617617
pub struct AttributePerform

module/core/fs_tools/src/fs/fs.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ mod private
3232
// }
3333
// }
3434
//
35-
// pub fn clean( &self ) -> Result< (), &'static str >
35+
// pub fn clean( &self ) -> Result< (), &'static str >
3636
// {
3737
// let result = std ::fs ::remove_dir_all( &self.test_path );
3838
// result.or_else( | err | format!( "Cannot remove temporary directory {}.", &self.test_path.display() ) );

module/core/macro_tools/src/attr_prop/boolean_optional.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//!
2-
//! A generic optional boolean attribute property: `Option< bool >`.
2+
//! A generic optional boolean attribute property: `Option< bool >`.
33
//! Defaults to `false`.
44
//!
55
use core ::marker ::PhantomData;
@@ -12,7 +12,7 @@ use components ::Assign;
1212
#[ derive( Debug, Default, Clone, Copy ) ]
1313
pub struct AttributePropertyOptionalBooleanMarker;
1414

15-
/// A generic optional boolean attribute property: `Option< bool >`.
15+
/// A generic optional boolean attribute property: `Option< bool >`.
1616
/// Defaults to `false`.
1717
#[ derive( Debug, Default, Clone, Copy ) ]
1818
pub struct AttributePropertyOptionalBoolean< Marker = AttributePropertyOptionalBooleanMarker >(

0 commit comments

Comments
 (0)