remove outdated comment

This commit is contained in:
Simon Gardling 2022-05-04 13:30:51 -04:00
parent 6c93ff175a
commit 6cce6daadd

View File

@ -29,8 +29,6 @@ pub fn split_function(input: &str) -> Vec<String> {
}
// __REVIEW__
// __OPTIMIZE__
// takes up to 33% of performance in calls like `buffer.iter().cloned().collect::<String>()` along with allocating `data` and `buffer` vectors
pub fn split_function_chars(chars: &[char]) -> Vec<String> {
if chars.is_empty() {
return Vec::new();