comprehensive-rust
comprehensive-rust copied to clipboard
Typo
Not sure of the intended meaning. At least the sentence is true and gramattically correct here
Oh my... That looks super weird indeed.
I wanted to write "Rust assumes that...".
I don't think it's about lifetimes per se, it's more of a general lint. "If you're doing something on the level of pointers, you have to opt in to being Send
and/or Sync
." (E.g. there's a good chance you're doing something FFI related.)
In fact I think mentioning lifetimes is confusing. Raw pointers have no lifetime parameter. Perhaps, "Rust assumes raw pointers may have special concurrency considerations."
Rust assumes raw pointers may have special concurrency considerations.
Thanks, I like this phrasing! Let's go with that for now :smile: