Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
go
Commits
1b6b1bc6
Commit
1b6b1bc6
authored
Mar 19, 2013
by
Rob Pike
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bytes,strings: remove user name from BUG in comment
R=golang-dev, dave CC=golang-dev
https://golang.org/cl/7856048
parent
54dffda2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
src/pkg/bytes/bytes.go
src/pkg/bytes/bytes.go
+1
-1
src/pkg/strings/strings.go
src/pkg/strings/strings.go
+1
-1
No files found.
src/pkg/bytes/bytes.go
View file @
1b6b1bc6
...
...
@@ -464,7 +464,7 @@ func isSeparator(r rune) bool {
// Title returns a copy of s with all Unicode letters that begin words
// mapped to their title case.
//
// BUG
(r)
: The rule Title uses for word boundaries does not handle Unicode punctuation properly.
// BUG: The rule Title uses for word boundaries does not handle Unicode punctuation properly.
func
Title
(
s
[]
byte
)
[]
byte
{
// Use a closure here to remember state.
// Hackish but effective. Depends on Map scanning in order and calling
...
...
src/pkg/strings/strings.go
View file @
1b6b1bc6
...
...
@@ -495,7 +495,7 @@ func isSeparator(r rune) bool {
// Title returns a copy of the string s with all Unicode letters that begin words
// mapped to their title case.
//
// BUG
(r)
: The rule Title uses for word boundaries does not handle Unicode punctuation properly.
// BUG: The rule Title uses for word boundaries does not handle Unicode punctuation properly.
func
Title
(
s
string
)
string
{
// Use a closure here to remember state.
// Hackish but effective. Depends on Map scanning in order and calling
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment