Skip to content

Commit 6b40fed

Browse files
858102-CREExcelElasticBeanStalkExample
1 parent 1506f4a commit 6b40fed

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Getting Started/AWS/AWS Elastic Beanstalk/Create Excel/Create Excel/Controllers/HomeController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ public ActionResult CreateExcelDocument()
201201
//Set the position as '0'.
202202
stream.Position = 0;
203203

204-
//Download Word document in the browser.
204+
//Download Excel document in the browser.
205205
return File(stream.ToArray(), "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "Sample.xlsx");
206206
}
207207

Getting Started/AWS/AWS Elastic Beanstalk/EditExcel/EditExcel/Controllers/HomeController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public ActionResult EditExcelDocument()
4848
//Set the position as '0'.
4949
stream.Position = 0;
5050

51-
//Download Word document in the browser.
51+
//Download Excel document in the browser.
5252
return File(stream.ToArray(), "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "Sample.xlsx");
5353
}
5454

0 commit comments

Comments
 (0)