Skip to content

Commit 7d375d6

Browse files
committed
format code
1 parent 5cc1c87 commit 7d375d6

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

godot-core/src/builtin/aabb.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,9 @@ impl Aabb {
8484

8585
impl std::fmt::Display for Aabb {
8686
/// Formats `Aabb` to match godot's display style.
87-
///
87+
///
8888
/// # Example
89-
///
89+
///
9090
/// ```
9191
/// use godot::prelude::*;
9292
/// let aabb = Aabb::new(Vector3::new(0.0, 0.0, 0.0), Vector3::new(1.0, 1.0, 1.0));

godot-core/src/builtin/color.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -498,9 +498,9 @@ fn to_be_words(mut u: u64) -> [u16; 4] {
498498

499499
impl std::fmt::Display for Color {
500500
/// Formats `Color` to match godot's display style.
501-
///
501+
///
502502
/// # Example
503-
///
503+
///
504504
/// ```
505505
/// use godot::prelude::*;
506506
/// let color = Color::from_rgba(1.0,1.0,1.0,1.0);

godot-core/src/builtin/plane.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,9 +140,9 @@ impl GodotFfi for Plane {
140140

141141
impl std::fmt::Display for Plane {
142142
/// Formats `Plane` to match godot's display style.
143-
///
143+
///
144144
/// # Example
145-
///
145+
///
146146
/// ```
147147
/// use godot::prelude::*;
148148
/// let plane = Plane::new(Vector3::new(1.0, 0.0, 0.0), 1.0);

godot-core/src/builtin/projection.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -962,9 +962,9 @@ mod test {
962962

963963
impl std::fmt::Display for Projection {
964964
/// Formats `Projection` to match godot's display style.
965-
///
965+
///
966966
/// # Example
967-
///
967+
///
968968
/// ```
969969
/// use godot::prelude::*;
970970
/// let proj = Projection::new([

godot-core/src/builtin/rect2.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,9 +110,9 @@ impl GodotFfi for Rect2 {
110110

111111
impl std::fmt::Display for Rect2 {
112112
/// Formats `Rect2` to match godot's display style.
113-
///
113+
///
114114
/// # Example
115-
///
115+
///
116116
/// ```
117117
/// use godot::prelude::*;
118118
/// let rect = Rect2::new(Vector2::new(0.0, 0.0), Vector2::new(1.0, 1.0));

godot-core/src/builtin/rect2i.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,9 @@ impl GodotFfi for Rect2i {
9999

100100
impl std::fmt::Display for Rect2i {
101101
/// Formats `Rect2i` to match godot's display style.
102-
///
102+
///
103103
/// # Example
104-
///
104+
///
105105
/// ```
106106
/// use godot::prelude::*;
107107
/// let rect = Rect2i::new(Vector2i::new(0, 0), Vector2i::new(1, 1));

godot-core/src/builtin/rid.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,9 @@ impl Rid {
8383

8484
impl std::fmt::Display for Rid {
8585
/// Formats `Rid` to match godot's display style.
86-
///
86+
///
8787
/// # Example
88-
///
88+
///
8989
/// ```
9090
/// use godot::prelude::*;
9191
/// let id = Rid::new(1);

0 commit comments

Comments
 (0)