From 3b297dd05b86b8225112aba12d9e1b9ff44fa7f7 Mon Sep 17 00:00:00 2001 From: Pekka Enberg Date: Thu, 4 Jul 2024 11:24:16 +0300 Subject: [PATCH] Fix analyze_column() to use RustDoc format --- core/translate.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/translate.rs b/core/translate.rs index 398dfeba5..e6468ac2d 100644 --- a/core/translate.rs +++ b/core/translate.rs @@ -337,10 +337,10 @@ fn analyze_columns( column_information_list } -/* - Walk column expression trying to find aggregation functions. If it finds one it will save information - about it. -*/ +/// Analyze a column expression. +/// +/// The function walks a column expression trying to find aggregation functions. +/// If it finds one it will save information about it. fn analyze_column(column: &sqlite3_parser::ast::ResultColumn, column_info_out: &mut ColumnInfo) { match column { sqlite3_parser::ast::ResultColumn::Expr(expr, _) => match expr {