-
Notifications
You must be signed in to change notification settings - Fork 548
add string interning wikipedia link #960
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
add string interning wikipedia link #960
Conversation
src/overview.md
Outdated
string interning is a method of storing only one copy of each distinct | ||
string value, which must be immutable. | ||
[read more](https://en.wikipedia.org/wiki/String_interning) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
string interning is a method of storing only one copy of each distinct | |
string value, which must be immutable. | |
[read more](https://en.wikipedia.org/wiki/String_interning) | |
[String interning] is a way of storing only one immutable copy of each distinct string value. |
and then add a reference link at the bottom:
[String interning]: https://en.wikipedia.org/wiki/String_interning)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You didn't add the reference at the bottom. It should go near the other links.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you mean add [String interning]: https://en.wikipedia.org/wiki/String_interning)
under read more
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please put it with the other links for the paragraph: see lines 101-115
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You undid the previous changes when you added the link.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah but now that change is back
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I mean this change: https://github.com/rust-lang/rustc-dev-guide/pull/960/files#r523762736
It's disappeared.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you please only show 'string interning' once instead of twice? Right now there are 5 lines related to it, I would rather have 1 line like it was before. Or in other words, my suggestion should replace the first change, not add to it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok sure
Co-authored-by: Joshua Nelson <joshua@yottadb.com>
No description provided.