Minor code formatting

This commit is contained in:
Marcin Ziąbek
2023-01-29 22:17:22 +01:00
committed by GitHub
parent 91c93e68b5
commit 805fd55d94
@@ -19,11 +19,12 @@ namespace QuestPDF.Examples
{
var url = "https://picsum.photos/300/200";
if(Greyscale)
if (Greyscale)
url += "?grayscale";
using var client = new WebClient();
client.Headers.Add("user-agent", "QuestPDF/1.0 Unit Testing");
var response = client.DownloadData(url);
container.Image(response);
}
@@ -60,4 +61,4 @@ namespace QuestPDF.Examples
});
}
}
}
}