From b33013ca435e2a7b9ec117bae5eb35df619b51f8 Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Thu, 21 Dec 2023 12:36:11 +0100 Subject: [PATCH] style: whitespaces trimmed to make pre-commit happy --- docs/getting_started/quick_start.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting_started/quick_start.md b/docs/getting_started/quick_start.md index 62457e87..3cb39189 100644 --- a/docs/getting_started/quick_start.md +++ b/docs/getting_started/quick_start.md @@ -110,7 +110,7 @@ int main() quantity_point temp{20. * deg_C}; std::cout << "Temperature: " - << temp.quantity_from_zero() << " (" + << temp.quantity_from_zero() << " (" << temp.in(deg_F).quantity_from_zero() << ")\n"; } ```