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

RFC: Rename StrBuf to String #60

Merged
merged 1 commit into from
May 21, 2014
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
27 changes: 27 additions & 0 deletions active/0000-rename-strbuf.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
- Start Date: 2014-04-30
- RFC PR #: (leave this empty)
- Rust Issue #: (leave this empty)

# Summary

`StrBuf` should be renamed to `String`.

# Motivation

Since `StrBuf` is so common, it would benefit from a more traditional name.

# Drawbacks

It may be that `StrBuf` is a better name because it mirrors Java `StringBuilder` or C# `StringBuffer`. It may also be that `String` is confusing because of its similarity to `&str`.

# Detailed design

Rename `StrBuf` to `String`.

# Alternatives

The impact of not doing this would be that `StrBuf` would remain `StrBuf`.

# Unresolved questions

None.