// replaced
xxx := nil
// not replaced
foo(xxx)
Why?!
// replaced
xxx := nil
// not replaced
foo(xxx)
Why?!
That looks to be a censoring/anti-spam feature. I’m not sure why it is happening as we have not enabled it (the regex is even blank). I’ll see if I can figure out why.
Until we can do that however, I recommend choosing better names for your variables :-p https://talks.golang.org/2014/names.slide#1
Found some sort of bad words list where xxx was on. I have removed it from the list, so you are free to name your variables badly again
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.