Skip to content

Commit

Permalink
Fix spacing in C# programs (#709)
Browse files Browse the repository at this point in the history
Fix two C# templates that were using three spaces instead of four. Verified all other C# templates are using four spaces.

Signed-off-by: Scott Lowe <[email protected]>
  • Loading branch information
scottslowe authored Dec 8, 2023
1 parent 88cb512 commit 277fbd3
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
14 changes: 7 additions & 7 deletions aws-csharp/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@

return await Deployment.RunAsync(() =>
{
// Create an AWS resource (S3 Bucket)
var bucket = new Bucket("my-bucket");
// Create an AWS resource (S3 Bucket)
var bucket = new Bucket("my-bucket");

// Export the name of the bucket
return new Dictionary<string, object?>
{
["bucketName"] = bucket.Id
};
// Export the name of the bucket
return new Dictionary<string, object?>
{
["bucketName"] = bucket.Id
};
});
14 changes: 7 additions & 7 deletions csharp/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@

return await Deployment.RunAsync(() =>
{
// Add your resources here
// e.g. var resource = new Resource("name", new ResourceArgs { });
// Add your resources here
// e.g. var resource = new Resource("name", new ResourceArgs { });

// Export outputs here
return new Dictionary<string, object?>
{
["outputKey"] = "outputValue"
};
// Export outputs here
return new Dictionary<string, object?>
{
["outputKey"] = "outputValue"
};
});

0 comments on commit 277fbd3

Please sign in to comment.