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

Fix markdown links #128

Merged
merged 2 commits into from
Jan 20, 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
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,11 @@ Magnus allows you to wrap Rust structs and enums as Ruby objects, enabling seaml

Use one of the following approaches to expose a Rust type to Ruby:

* A convenience macro [`#[magnus::wrap]`].
* A convenience macro [`#[magnus::wrap]`][magnus-wrap].
* More customised approach by implementing the [`magnus::TypedData`] trait.

[`#[magnus::wrap]`]: https://docs.rs/magnus/latest/magnus/attr.wrap.html
[`magnus::TypedData`]: https://docs.rs/magnus/latest/magnus/derive.TypedData.html
[magnus-wrap]: https://docs.rs/magnus/latest/magnus/attr.wrap.html
[`magnus::TypedData`]: https://docs.rs/magnus/latest/magnus/derive.TypedData.html

Then this Rust type can be:

Expand Down Expand Up @@ -558,4 +558,6 @@ library turns out better for you.

## License

This project is licensed under the MIT license, see LICENSE.
This project is licensed under the MIT license, see [LICENSE].

[LICENSE]: https://github.com/matsadler/magnus/blob/main/LICENSE
Loading