| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
func simpleTitle(s string) string { return strings.ToUpper(s[:1]) + s[1:] } // Unlike title, only title the first letter of the string.Can't we just do this unconditionally as a prep step?
This is in cmd/compile/internal, so we're not exposing anything.
eName := e.nameWhy is something like this necessary?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
func simpleTitle(s string) string { return strings.ToUpper(s[:1]) + s[1:] } // Unlike title, only title the first letter of the string.Can't we just do this unconditionally as a prep step?
This is in cmd/compile/internal, so we're not exposing anything.
We need to update all the users
eName := e.nameWhy is something like this necessary?
Oh I think this was left over from something that I removed earlier. (I made some more changes to this during the weekend and must have missed this in the cleanup)
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
func simpleTitle(s string) string { return strings.ToUpper(s[:1]) + s[1:] } // Unlike title, only title the first letter of the string.Michael MatloobCan't we just do this unconditionally as a prep step?
This is in cmd/compile/internal, so we're not exposing anything.
We need to update all the users
(Incomplete comment was posted when I mailed)
Do you mean to unconditionally export everything that we need to export? We could do that but that would mean adding another rf change to export the identifiers that's separate from the changes that move them to different package.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |