class Cucumber::MultilineArgument::DataTable::DataTablePrinter

def to_s

def to_s
  leading_row = "\n"
  end_indentation = indentation - 2
  trailing_row = "\n#{' ' * end_indentation}"
  table_rows = data_table.cell_matrix.map { |row| format_row(row) }
  leading_row + table_rows.join("\n") + trailing_row
end