diff --git a/content/copilot/getting-started-with-github-copilot/getting-started-with-github-copilot-in-visual-studio.md b/content/copilot/getting-started-with-github-copilot/getting-started-with-github-copilot-in-visual-studio.md index a7c11d3650..7a70a5d88a 100644 --- a/content/copilot/getting-started-with-github-copilot/getting-started-with-github-copilot-in-visual-studio.md +++ b/content/copilot/getting-started-with-github-copilot/getting-started-with-github-copilot-in-visual-studio.md @@ -50,7 +50,7 @@ To use {% data variables.product.prodname_copilot %}, you must first install the {% data reusables.copilot.supported-languages %} The following samples are in C#, but other languages will work similarly. {% data reusables.copilot.create-c-file %} -1. In the C# file, type the following function header. {% data variables.product.prodname_copilot %} will automatically suggest an entire function body in grayed text, as shown below. The exact suggestion may vary. +1. In the C# file, type the following function signature. {% data variables.product.prodname_copilot %} will automatically suggest an entire function body in grayed text, as shown below. The exact suggestion may vary. ```csharp{:copy} function calculateDaysBetweenDates(begin, end) { ``` @@ -60,7 +60,7 @@ To use {% data variables.product.prodname_copilot %}, you must first install the ## Seeing alternative suggestions {% data reusables.copilot.alternative-suggestions %} {% data reusables.copilot.create-c-file %} -1. In the C# file, type the following function header. {% data variables.product.prodname_copilot %} will show you a suggestion. +1. In the C# file, type the following function signature. {% data variables.product.prodname_copilot %} will show you a suggestion. ```csharp{:copy} function calculateDaysBetweenDates(begin, end) {