Skip to content

Commit

Permalink
Fix spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
rschu1ze committed Oct 9, 2023
1 parent 07e0cc1 commit 878e36d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Functions/array/arrayFold.cpp
Expand Up @@ -174,7 +174,7 @@ class ArrayFold : public IFunction
IColumn::Permutation inverse_permutation(rows_count);
size_t inverse_permutation_count = 0;

/// current_column after each iteration contains value of accumulator after aplying values under indexes of arrays.
/// current_column after each iteration contains value of accumulator after applying values under indexes of arrays.
/// At each iteration only rows of current_column with arrays that still has unapplied elements are kept.
/// Discarded rows which contain finished calculations are added to result_data column and as we insert them we save their original row_number in inverse_permutation vector
for (size_t ind = 0; ind < max_array_size; ++ind)
Expand Down

0 comments on commit 878e36d

Please sign in to comment.