From 21f2c42bf376ff4d60bcb33b3ef47a6e60a57931 Mon Sep 17 00:00:00 2001 From: alpavanoglu Date: Mon, 5 Feb 2024 21:00:34 +0100 Subject: [PATCH] Fix the code comment as "... max total of both lines at 3" --- .../Classes/ViewRelated/Views/List/ListTableViewCell.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WordPress/Classes/ViewRelated/Views/List/ListTableViewCell.swift b/WordPress/Classes/ViewRelated/Views/List/ListTableViewCell.swift index 58567914e628..ec562828df4f 100644 --- a/WordPress/Classes/ViewRelated/Views/List/ListTableViewCell.swift +++ b/WordPress/Classes/ViewRelated/Views/List/ListTableViewCell.swift @@ -52,7 +52,7 @@ class ListTableViewCell: UITableViewCell, NibReusable { } set { titleLabel.attributedText = newValue ?? NSAttributedString() - // Updating snippetLabel's line count to keep the max total of both lines at 4. + // Updating snippetLabel's line count to keep the max total of both lines at 3. snippetLabel.numberOfLines = titleLabel.numberOfVisibleLines > 1 ? 1 : 2 } }