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/names/preludes.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -93,7 +93,7 @@ The *`no_std` [attribute][attributes]* causes the [`std`] crate to not be linked
93
93
> Using `no_std` is useful when either the crate is targeting a platform that does not support the standard library or is purposefully not using the capabilities of the standard library.Those capabilities are mainly dynamic memory allocation (e.g. `Box` and `Vec`) and file and network capabilities (e.g. `std::fs` and `std::io`).
94
94
95
95
> [!WARNING]
96
-
> Using `no_std` does not prevent the standard library from being linkedin.It is still valid to put `externcrate std;` intothecrateanddependenciescanalsolinkitin.
96
+
> Using `no_std` does not prevent the standard library from being linked.It is still valid to write `externcrate std` in the crateor in one of its dependencies; thiswillcausethecompilertolinkthe `std` crateintotheprogram.
0 commit comments