fix linting errors

This commit is contained in:
2024-11-27 20:46:28 +01:00
parent bbfabb2eee
commit 7893bd7b15
2 changed files with 3 additions and 3 deletions

View File

@@ -2,9 +2,9 @@
public class HelloWorldProvider
{
public string GetHelloWorld(string name = null)
public string GetHelloWorld(string? name = null)
{
if(string.IsNullOrEmpty(name))
if (string.IsNullOrEmpty(name))
{
return "Hello world!";
}