You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/2025h1/eii.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ but the priority is at functions right now.
19
19
(as per the rfcs[^1][^2][^3] on this):
20
20
21
21
We have several items in the standard library that are overridable/definable by the user crate.
22
-
For example, the (no_std) `panic_handler`, the global allocator for `alloc`, and so on.
22
+
For example, the (`no_std`) `panic_handler`, the global allocator for `alloc`, and so on.
23
23
24
24
Each of those is a special lang item with its own special handling.
25
25
Having a general mechanism simplifies the language and makes this functionality available for other crates,
@@ -43,8 +43,8 @@ Some of these are magical lang items, whereas others need to be set at runtime o
43
43
44
44
After [RFC 3632], which proposes a new syntax for externally implementable _functions_,
45
45
several alternative ideas were proposed in rapid succession
46
-
that focussing on [statics](https://github.com/rust-lang/rfcs/pull/3635), [traits](https://github.com/rust-lang/rfcs/pull/3645), and [impl blocks](https://github.com/rust-lang/rfcs/pull/3632) rather than function definitions.
47
-
Each of these having rougly equivalent power, but using a different part of Rust to achieve it.
46
+
that focus on [statics](https://github.com/rust-lang/rfcs/pull/3635), [traits](https://github.com/rust-lang/rfcs/pull/3645), and [impl blocks](https://github.com/rust-lang/rfcs/pull/3632) rather than function definitions.
47
+
Each of these having roughly equivalent power, but using a different part of Rust to achieve it.
48
48
49
49
The lang team agreed that this is a problem worth solving, and accepted it as a _lang experiment_.[^4]
0 commit comments