Skip to content

Commit 061a5d9

Browse files
shethaaditAdit Sheth
andauthored
Fixed issue 47108. (#47121)
Co-authored-by: Adit Sheth <[email protected]>
1 parent 7f30eb5 commit 061a5d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/csharp/tour-of-csharp/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Beginning with C# 14 and .NET 10, you can create *file based programs*, which si
4242

4343
:::code language="csharp" source="./snippets/file-based-programs/hello-world.cs":::
4444

45-
The first line of the program contains the `#!` sequence for unix shells. The location of the `dotnet` CLI can vary on different distributions. On any unix system, if you set the *execute* (`+x`) permission on a C# file, you can run the C# file from the command line:
45+
The first line of the program contains the `#!` sequence (shebang) for unix shells. The location of the `dotnet` CLI can vary on different distributions. On any unix system, if you set the *execute* (`+x`) permission on such a C# file that contains the shebang directive, you can run the C# file directly from the command line:
4646

4747
```bash
4848
./hello-world.cs

0 commit comments

Comments
 (0)