@@ -21,7 +21,7 @@ use godot_ffi as sys;
21
21
/// Normally, you don't need to implement this trait yourself; use [`#[derive(GodotClass)]`](../register/derive.GodotClass.html) instead.
22
22
// Above intra-doc link to the derive-macro only works as HTML, not as symbol link.
23
23
#[ diagnostic:: on_unimplemented(
24
- message = "Only classes registered with Godot are allowed in this context" ,
24
+ message = "only classes registered with Godot are allowed in this context" ,
25
25
note = "you can use `#[derive(GodotClass)]` to register your own structs with Godot" ,
26
26
note = "see also: https://godot-rust.github.io/book/register/classes.html"
27
27
) ]
@@ -262,7 +262,7 @@ pub trait IndexEnum: EngineEnum {
262
262
#[ diagnostic:: on_unimplemented(
263
263
message = "Class `{Self}` requires a `Base<T>` field" ,
264
264
label = "missing field `_base: Base<...>` in struct declaration" ,
265
- note = "A base field is required to access the base from within `self`, as well as for #[signal], #[rpc] and #[func(virtual)]" ,
265
+ note = "a base field is required to access the base from within `self`, as well as for #[signal], #[rpc] and #[func(virtual)]" ,
266
266
note = "see also: https://godot-rust.github.io/book/register/classes.html#the-base-field"
267
267
) ]
268
268
pub trait WithBaseField : GodotClass + Bounds < Declarer = bounds:: DeclUser > {
@@ -527,8 +527,8 @@ pub mod cap {
527
527
#[ diagnostic:: on_unimplemented(
528
528
message = "Class `{Self}` requires either an `init` constructor, or explicit opt-out" ,
529
529
label = "needs `init`" ,
530
- note = "To provide a default constructor, use `#[class(init)]` or implement an `init` method" ,
531
- note = "To opt out, use `#[class(no_init)]`" ,
530
+ note = "to provide a default constructor, use `#[class(init)]` or implement an `init` method" ,
531
+ note = "to opt out, use `#[class(no_init)]`" ,
532
532
note = "see also: https://godot-rust.github.io/book/register/constructors.html"
533
533
) ]
534
534
pub trait GodotDefault : GodotClass {
0 commit comments