Reports an empty separator in the 'paste' function.
The quick-fix replaces a 'paste' call with the 'paste0' function.
Example:
paste("a", "b", sep = '')
When you apply the quick-fix, the code changes to:
paste0("a", "b")