Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replaces deprecated #[init(default = ...)] with #[init(val = ...)] #73

Merged
merged 1 commit into from
Feb 2, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/register/constructors.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ struct Monster {
}
```

To provide another default value, use `#[init(default = value)]`. This should only be used for simple cases, as it may lead to difficult-to-read
To provide another default value, use `#[init(val = value)]`. This should only be used for simple cases, as it may lead to difficult-to-read
code and error messages. This API may also still change.

```rust
Expand All @@ -53,7 +53,7 @@ code and error messages. This API may also still change.
struct Monster {
name: String, // initialized to ""

#[init(default = 100)]
#[init(val = 100)]
hitpoints: i32, // initialized to 100

base: Base<Node3D>, // wired up
Expand Down
Loading