From 993294ac0897ae6cea1fcad564353e83481589e2 Mon Sep 17 00:00:00 2001 From: Aakansha Doshi Date: Wed, 22 Mar 2023 16:33:28 +0530 Subject: [PATCH] typo --- src/element/textMeasurements.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/element/textMeasurements.ts b/src/element/textMeasurements.ts index bb3f139c6..a18e647ea 100644 --- a/src/element/textMeasurements.ts +++ b/src/element/textMeasurements.ts @@ -324,10 +324,10 @@ const DEFAULT_LINE_HEIGHT = { // ~1.25 is the average for Virgil in WebKit and Blink. // Gecko (FF) uses ~1.28. [FONT_FAMILY.Virgil]: 1.25 as ExcalidrawTextElement["lineHeight"], - // ~1.15 is the average for Virgil in WebKit and Blink. + // ~1.15 is the average for Helvetica in WebKit and Blink. // Gecko if all over the place. [FONT_FAMILY.Helvetica]: 1.15 as ExcalidrawTextElement["lineHeight"], - // ~1.2 is the average for Virgil in WebKit and Blink, and kinda Gecko too + // ~1.2 is the average for Cascadia in WebKit and Blink, and kinda Gecko too [FONT_FAMILY.Cascadia]: 1.2 as ExcalidrawTextElement["lineHeight"], };