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

ToLower function comment is wrong #358

Closed
gopherbot opened this issue Nov 30, 2009 · 3 comments
Closed

ToLower function comment is wrong #358

gopherbot opened this issue Nov 30, 2009 · 3 comments

Comments

@gopherbot
Copy link
Contributor

by dmitry.s.mamonov:

http://golang.org/pkg/strings/

AS IS
-----------------------------------------------
func ToLower[Top]

func ToLower(s string) string

ToUpper returns a copy of the string s with all Unicode letters mapped to
their lower case. 

TO BE
-----------------------------------------------
ToLower ....
@gopherbot
Copy link
Contributor Author

Comment 1 by dmitry.s.mamonov:

Same in code: http://golang.org/src/pkg/strings/strings.go
// ToUpper returns a copy of the string s with all Unicode letters mapped to their
lower case.
func ToLower(s string) string { return Map(unicode.ToLower, s) }
(sorry, can't refer to line in sources)

@griesemer
Copy link
Contributor

Comment 2:

Owner changed to g...@golang.org.

Status changed to Accepted.

@griesemer
Copy link
Contributor

Comment 3:

This issue was closed by revision c1767db.

Status changed to Fixed.

Merged into issue #-.

@golang golang locked and limited conversation to collaborators Jun 24, 2016
This issue was closed.
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

2 participants