From 5cbe9d40b019bf7e42e848cc24b7da1eb6639807 Mon Sep 17 00:00:00 2001 From: 18-F-cali Date: Fri, 18 Jun 2021 21:09:33 +0530 Subject: [PATCH] Removed extra line from example code. --- docs/input/cli/getting-started.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/input/cli/getting-started.md b/docs/input/cli/getting-started.md index 4955252..68db8eb 100644 --- a/docs/input/cli/getting-started.md +++ b/docs/input/cli/getting-started.md @@ -49,8 +49,7 @@ internal sealed class FileSizeCommand : Command var totalFileSize = files .Sum(fileInfo => fileInfo.Length); - AnsiConsole.MarkupLine( - $"Total file size for [green]{searchPattern}[/] files in [green]{searchPath}[/]: [blue]{totalFileSize:N0}[/] bytes"); $"Total file size for [green]{searchPattern}[/] files in [green]{searchPath}[/]: [blue]{totalFileSize:N0}[/] bytes"); + AnsiConsole.MarkupLine($"Total file size for [green]{searchPattern}[/] files in [green]{searchPath}[/]: [blue]{totalFileSize:N0}[/] bytes"); return 0; }