报告 'paste' 函数中的空分隔符。 该快速修复会将 'paste' 调用替换为 'paste0' 函数。

示例:

paste("a", "b", sep = '')

当您应用该快速修复时,代码变为:

paste0("a", "b")