Skip to content

Commit 10425d9

Browse files
author
Colin Robertson
committed
Eliminate elipsis character
1 parent 7a873df commit 10425d9

File tree

145 files changed

+245
-245
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

145 files changed

+245
-245
lines changed

docs/code-quality/annotating-structs-and-classes.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ You can annotate struct and class members by using annotations that act like inv
7676
typedef _Struct_size_bytes_(nSize)
7777
struct MyStruct {
7878
size_t nSize;
79-
79+
...
8080
};
8181

8282
```

docs/code-quality/c6031.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ _Check_return_ bool func();
104104
void test_f()
105105
{
106106
if( func() ) {
107-
// code
107+
// code ...
108108
}
109109
}
110110
```

docs/code-quality/walkthrough-analyzing-managed-code-for-code-defects.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ In this walkthrough, you analyze a managed project for code defects by using the
160160

161161
Select the **Sign the assembly** check box.
162162

163-
In the **Choose a string name key file** list, select **\<New>**.
163+
In the **Choose a string name key file** list, select **\<New...>**.
164164

165165
The **Create Strong Name Key** dialog box appears.
166166

docs/cross-platform/build-apps-with-native-ui-using-xamarin-in-visual-studio.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ Once you've done the steps in [Setup and install](../cross-platform/setup-and-in
112112

113113
1. To run this sample you must first sign up for a free API key at [http://openweathermap.org/appid](http://openweathermap.org/appid).
114114

115-
2. Right-click the **WeatherApp** project and select **Add > Class**. In the **Add New Item** dialog, name the file **Weather.cs**. You’ll use this class to store data from the weather data service.
115+
2. Right-click the **WeatherApp** project and select **Add > Class...**. In the **Add New Item** dialog, name the file **Weather.cs**. You’ll use this class to store data from the weather data service.
116116

117117
3. Replace the entire contents of **Weather.cs** with the following:
118118

docs/cross-platform/learn-app-building-basics-with-xamarin-forms-in-visual-studio.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ Once you've done the steps in [Setup and install](../cross-platform/setup-and-in
112112

113113
The following steps add then code to the PCL to access and store data from that weather service:
114114

115-
1. Right-click the **WeatherApp** project and select **Add > Class**. In the **Add New Item** dialog, name the file **Weather.cs**. You’ll use this class to store data from the weather data service.
115+
1. Right-click the **WeatherApp** project and select **Add > Class...**. In the **Add New Item** dialog, name the file **Weather.cs**. You’ll use this class to store data from the weather data service.
116116

117117
2. Replace the entire contents of **Weather.cs** with the following:
118118

docs/data-tools/add-validation-to-an-n-tier-dataset.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Adding validation to a dataset that is separated into an n-tier solution is basi
5050
## Validatechanges to individual columns
5151
Validate values in individual columns by handling the <xref:System.Data.DataTable.ColumnChanging> event. The <xref:System.Data.DataTable.ColumnChanging> event is raised when a value in a column is modified. Create an event handler for the <xref:System.Data.DataTable.ColumnChanging> event by double-clicking the desired column on the **Dataset Designer**.
5252

53-
The first time that you double-click a column, the designer generates an event handler for the <xref:System.Data.DataTable.ColumnChanging> event. An `IfThen` statement is also created that tests for the specific column. For example, the following code is generated when you double-click the RequiredDate column on the Northwind Orders table:
53+
The first time that you double-click a column, the designer generates an event handler for the <xref:System.Data.DataTable.ColumnChanging> event. An `If...Then` statement is also created that tests for the specific column. For example, the following code is generated when you double-click the RequiredDate column on the Northwind Orders table:
5454

5555
```vb#
5656
Private Sub OrdersDataTable_ColumnChanging(ByVal sender As System.Object, ByVal e As System.Data.DataColumnChangeEventArgs) Handles Me.ColumnChanging

docs/data-tools/create-parameterized-tableadapter-queries.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ A parameterized query returns data that meets the conditions of a WHERE clause w
110110

111111
1. In the **Dataset Designer**, select the TableAdapter query that needs to accept null parameter values.
112112

113-
2. In the **Properties** window, select**Parameters**.Then press the ellipsis (****) button to open the **Parameters Collection Editor**.
113+
2. In the **Properties** window, select**Parameters**.Then press the ellipsis (**...**) button to open the **Parameters Collection Editor**.
114114

115115
3. Select the parameter that allows null values and set the **AllowDbNull** property to `true`.
116116

docs/debugger/format-specifiers-in-cpp.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ int main() {
9595
|**s32**|UTF-32 string|\<location> U”hello world”|U”hello world”|
9696
|**s32b**|UTF-32 string (no quotation marks)|\<location> U”hello world”|hello world|
9797
|**en**|enum|Saturday(6)|Saturday|
98-
|**hv**|Pointer type - indicates that the pointer value being inspected is the result of the heap allocation of an array, for example, `new int[3]`.|\<location>{\<first member>}|\<location>{\<first member>, \<second member>, }|
99-
|**na**|Suppresses the memory address of a pointer to an object.|\<location>, {member=value}|{member=value}|
98+
|**hv**|Pointer type - indicates that the pointer value being inspected is the result of the heap allocation of an array, for example, `new int[3]`.|\<location>{\<first member>}|\<location>{\<first member>, \<second member>, ...}|
99+
|**na**|Suppresses the memory address of a pointer to an object.|\<location>, {member=value...}|{member=value...}|
100100
|**nd**|Displays only the base class information, ignoring derived classes|`(Shape*) square` includes base class and derived class information|Displays only base class information|
101101
|hr|HRESULT or Win32 error code. (The debugger now decodes HRESULTs automatically, so this specifier is not required in those cases.|S_OK|S_OK|
102102
|wc|Window class flag|0x0010|WC_DEFAULTCHAR|

docs/debugger/graphics/capturing-graphics-information.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Capture graphics information from your Direct3D app so that you can use Visual S
5959

6060
![Capture frames using the GPU Usage tool.](media/pix_gpu_usage_tool_capture_frame.png)
6161

62-
When you're ready to examine the frames you've captured, start the **Visual Studio Graphics Analyzer** by following the **Frame ** link above the image thumbnails, or by double-clicking the thumbnail.
62+
When you're ready to examine the frames you've captured, start the **Visual Studio Graphics Analyzer** by following the **Frame ...** link above the image thumbnails, or by double-clicking the thumbnail.
6363

6464
Only whole frames can be captured, so when you initiate a capture, it’s really the graphics information from the next frame that's recorded. Recording begins immediately after the frame in which you initiated capture is presented and ends when the captured frame is presented. You can capture as many frames as you want while the app is running under Graphics Diagnostics. If you don't capture any frames, the graphics log is discarded.
6565

docs/debugger/graphics/hlsl-shader-debugger.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ The HLSL debugger in Visual Studio Graphics Analyzer helps you understand how yo
5353
Nevertheless, the HLSL debugger provides a better, more CPU-like debugging experience than would be possible otherwise.
5454

5555
## HLSL Shader Edit & Apply
56-
The HLSL shader debugger doesn't support Edit & Continue in the same way that the CPU debugger does because the GPU execution model doesn't allow shader state to be undone. Instead, the HLSL debugger supports Edit & Apply, which allows you to edit HLSL source files and then choose **Apply** to regenerate the frame to see the effect of your changes. Your modified shader code is stored in a separate file to preserve the integrity of your project's original HLSL source file, but when you're satisfied with your changes you can choose **Copy to** to copy the changes into your project. Using this feature, you can quickly iterate on shader code that contains errors and eliminate costly rebuild and capture steps from your HLSL debugging workflow.
56+
The HLSL shader debugger doesn't support Edit & Continue in the same way that the CPU debugger does because the GPU execution model doesn't allow shader state to be undone. Instead, the HLSL debugger supports Edit & Apply, which allows you to edit HLSL source files and then choose **Apply** to regenerate the frame to see the effect of your changes. Your modified shader code is stored in a separate file to preserve the integrity of your project's original HLSL source file, but when you're satisfied with your changes you can choose **Copy to...** to copy the changes into your project. Using this feature, you can quickly iterate on shader code that contains errors and eliminate costly rebuild and capture steps from your HLSL debugging workflow.
5757

5858
## HLSL Disassembly
5959
The HLSL shader debugger provides a listing of HLSL shader assembly to the right of the HLSL source code listing.

docs/debugger/how-to-debug-aspnet-exceptions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,4 @@ Debugging exceptions is an important part of developing a robust [!INCLUDE[vstec
5858

5959
### To use best practices for ASP.NET exception handling
6060

61-
- Place `try catch` blocks around code that can throw exceptions that you can anticipate and know how to handle. For example, if the application is making calls to an XML Web Service or directly to a SQL Server, that code should be in **try catch** blocks because there are numerous exceptions that can occur.
61+
- Place `try ... catch` blocks around code that can throw exceptions that you can anticipate and know how to handle. For example, if the application is making calls to an XML Web Service or directly to a SQL Server, that code should be in **try ... catch** blocks because there are numerous exceptions that can occur.

docs/debugger/how-to-restore-hidden-debugger-commands.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ When you set up Visual Studio, you are asked to choose a set of default IDE sett
5151

5252
3. In the **Menu bar:** drop-down, select the **Debug** menu that you want to contain the restored command.
5353

54-
4. Click the **Add Command** button.
54+
4. Click the **Add Command...** button.
5555

5656
5. In the **Add Command** box, select the command you want to add, and click **OK**.
5757

docs/debugger/project-settings-for-a-cpp-debug-configuration.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ You can change the project settings for a C or Visual C++ debug configuration in
155155
|**Connection** (Remote Windows Debugger)|Allows you to switch between standard and no-authentication connection types for remote debugging. Specify a remote computer name in the **Remote Server Name** box. Connection types include the following:<br /><br /> - **Remote with Windows Authentication**<br />- **Remote with No Authentication**<br /><br /> **Note** Remote debugging with No Authentication may leave the remote computer vulnerable to security violations. Windows Authentication mode is more secure.<br /><br /> For more information, see [Remote Debugging Setup](../debugger/remote-debugging.md).|
156156
|**HTTP URL** (Web Service Debugger and Web Browser Debugger)|Specifies the URL where the project you are debugging is located.|
157157
|**Debugger Type**|Specifies the type of debugger to be used: **Native Only**, **Managed Only**, **GPU Only**, **Mixed**, **Auto** (default), or **Script**.<br /><br /> - **Native Only** is for unmanaged C++ code.<br />- **Managed Only** is for code that runs under the common language runtime (managed code).<br />- **Mixed** invokes debuggers for both managed and unmanaged code.<br />- **Auto** determines the debugger type based on compiler and EXE information.<br />- **Script** invokes a debugger for scripts.<br />- **GPU Only** is for C++ AMP code that runs on a GPU device or on the DirectX reference rasterizer. See [Debugging GPU Code](../debugger/debugging-gpu-code.md).|
158-
|**Environment** (Local Windows Debugger and Remote Windows Debugger)|Specifies environment variables for the program that you are debugging. Use standard environment variable syntax (for example, `PATH="%SystemRoot%\..."`). These variables override the system environment or are merged with the system environment, depending on the **Merge Environment** setting. When you click in the settings column, an "Edit" appears. Click that link to edit environment variables.|
158+
|**Environment** (Local Windows Debugger and Remote Windows Debugger)|Specifies environment variables for the program that you are debugging. Use standard environment variable syntax (for example, `PATH="%SystemRoot%\..."`). These variables override the system environment or are merged with the system environment, depending on the **Merge Environment** setting. When you click in the settings column, an "Edit..." appears. Click that link to edit environment variables.|
159159
|**Merge Environment** (Local Windows Debugger)|Determines whether the variables that are specified in the **Environment** box will be merged with the environment that is defined by the operating system. Default setting is Yes.|
160160
|**SQL Debugging** (all but MPI Cluster Debugger)|Enables debugging of SQL procedures from your [!INCLUDE[vcprvc](../code-quality/includes/vcprvc_md.md)] application. Default setting is No.|
161161
|**Debugging Accelerator Type** (GPU debugging only)|Specifies the GPU device to use for debugging. Installing device drivers for compatible GPU devices will add additional options. The default setting is "GPU - Software Emulator."|

docs/deployment/clickonce-application-manifest.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ A [!INCLUDE[ndptecclick](../deployment/includes/ndptecclick_md.md)] application
123123
</dependentAssembly>
124124
</dependency>
125125
<publisherIdentity name="CN=DOMAINCONTROLLER\UserMe" issuerKeyHash="18312a18a21b215ecf4cdb20f5a0e0b0dd263c08" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#">
126-
126+
...
127127
</Signature></r:issuer></r:license></msrel:RelData></KeyInfo></Signature></asmv1:assembly>
128128
```
129129

docs/deployment/clickonce-deployment-manifest.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ A deployment manifest is an XML file that describes a [!INCLUDE[ndptecclick](../
126126
</dependentAssembly>
127127
</dependency>
128128
<publisherIdentity name="CN=DOMAIN\MyUsername" issuerKeyHash="18312a18a21b215ecf4cdb20f5a0e0b0dd263c08" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#">
129-
129+
...
130130
</Signature></asmv1:assembly>
131131
```
132132

docs/designers/getting-started-with-wpf.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ Windows Presentation Foundation (WPF) is a UI framework that creates desktop cli
3636

3737
|||
3838
|-|-|
39-
|I want to jump right in|[Walkthrough: My First WPF Desktop Application](../designers/walkthrough-my-first-wpf-desktop-application2.md)<br /><br /> [Walkthrough: Create a WPF Desktop Application connected to an Azure Mobile Service](../designers/walkthrough-create-a-wpf-desktop-application-connected-to-an-azure-mobile-service.md)|
39+
|I want to jump right in...|[Walkthrough: My First WPF Desktop Application](../designers/walkthrough-my-first-wpf-desktop-application2.md)<br /><br /> [Walkthrough: Create a WPF Desktop Application connected to an Azure Mobile Service](../designers/walkthrough-create-a-wpf-desktop-application-connected-to-an-azure-mobile-service.md)|
4040
|How do I design the application UI?|[Designing XAML in Visual Studio and Blend for Visual Studio](../designers/designing-xaml-in-visual-studio.md)|
4141
|New to .NET?|[Overview of the .NET Framework](https://msdn.microsoft.com/en-us/library/zw4w595w\(v=vs.140\).aspx)<br /><br /> [Application Essentials](http://msdn.microsoft.com/Library/653da4ba-3752-4d1f-a08a-de017dc86ecc)<br /><br /> [Getting Started with Visual C# and Visual Basic](https://msdn.microsoft.com/en-us/library/dd492171\(v=vs.140\).aspx)|
42-
|Tell me more about WPF|[Introduction to WPF](../designers/introduction-to-wpf.md)<br /><br /> [XAML Overview (WPF)](https://msdn.microsoft.com/en-us/library/ms752059\(v=vs.100\).aspx)<br /><br /> [Controls](https://msdn.microsoft.com/en-us/library/bb613551\(v=vs.100\).aspx)<br /><br /> [Data Binding Overview](https://msdn.microsoft.com/en-us/library/ms752347\(v=vs.100\).aspx)<br /><br /> [WPF Data Binding with LINQ to XML](../designers/wpf-data-binding-with-linq-to-xml.md)|
42+
|Tell me more about WPF...|[Introduction to WPF](../designers/introduction-to-wpf.md)<br /><br /> [XAML Overview (WPF)](https://msdn.microsoft.com/en-us/library/ms752059\(v=vs.100\).aspx)<br /><br /> [Controls](https://msdn.microsoft.com/en-us/library/bb613551\(v=vs.100\).aspx)<br /><br /> [Data Binding Overview](https://msdn.microsoft.com/en-us/library/ms752347\(v=vs.100\).aspx)<br /><br /> [WPF Data Binding with LINQ to XML](../designers/wpf-data-binding-with-linq-to-xml.md)|
4343
|Are you a Windows Forms developer?|[Windows Forms Controls and Equivalent WPF Controls](https://msdn.microsoft.com/en-us/library/ms750559\(v=vs.100\).aspx)<br /><br /> [Supported Scenarios in WPF and Windows Forms Interoperation](https://msdn.microsoft.com/en-us/library/ms751797\(v=vs.100\).aspx)|
4444

4545
## See Also

docs/extensibility/creating-a-basic-project-system-part-2.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ ZipProjects:
189189
## Deploying a Visual Studio Template
190190
Visual Studio templates do not contain path information. Therefore, the template .zip file must be deployed to a location that is known to Visual Studio. The location of the ProjectTemplates folder is typically **\<%LOCALAPPDATA%>\Microsoft\VisualStudio\14.0Exp\ProjectTemplates**.
191191
192-
To deploy your project factory, the installation program must have administrator privileges. It deploys templates under the Visual Studio installation node: **\Microsoft Visual Studio 14.0\Common7\IDE\ProjectTemplates**.
192+
To deploy your project factory, the installation program must have administrator privileges. It deploys templates under the Visual Studio installation node: **...\Microsoft Visual Studio 14.0\Common7\IDE\ProjectTemplates**.
193193
194194
## Testing a Visual Studio Template
195195
Test your project factory to see whether it creates a project hierarchy by using the Visual Studio template.

docs/extensibility/extern-element.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Extern Element
7676
<CommandTable xmlns="http://schemas.microsoft.com/VisualStudio/2005-10-
7777
18/CommandTable" xmlns:xs="http://www.w3.org/2001/XMLSchema">
7878
<Extern href="C:\VSCore\vscommon\inc\vsshlids.h"/>
79-
79+
...
8080
<Commands package="guidMyPackage">
8181
</CommandTable>
8282
```

docs/extensibility/how-to-create-an-atom-feed-for-a-private-gallery.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ You can create an Atom (RSS) feed to an intranet location that contains extensio
5757
- <entry>
5858
  <id>SelectionHighlight..a14874d2-8199-4a60-af8a-11d6447813aa</id>
5959
  <title type="text">Highlight all occurrences of selected word</title>
60-
  <summary type="text">This extends the editor to highlight .</summary>
60+
  <summary type="text">This extends the editor to highlight ....</summary>
6161
  <published>2011-04-14T14:24:51-07:00</published>
6262
  <updated>2011-04-14T14:24:22-07:00</updated>
6363
- <author>
@@ -77,7 +77,7 @@ You can create an Atom (RSS) feed to an intranet location that contains extensio
7777
  </entry>
7878
- <entry>
7979
  <id>Template_Wizard_239.Microsoft.3b38a7e3-5cbc-4389-a92a-d82tyc2ed592</id>
80-
 
80+
  ...
8181
  </entry>
8282
  </feed>
8383

docs/extensibility/how-to-manage-a-private-gallery-by-using-registry-settings.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ If you are an administrator or the developer of an Isolated Shell extension, you
4040
[$RootPath$\ExtensionManager\Repositories\{UniqueGUID}]
4141
@={URI}  (REG_SZ)
4242
Disabled=0 | 1 (DWORD)
43-
Priority=0 (highest priority) MaxInt (lowest priority) (DWORD) (uint)
43+
Priority=0 (highest priority) ... MaxInt (lowest priority) (DWORD) (uint)
4444
Protocol=Atom Feed|Sharepoint (REG_SZ)
4545
DisplayName={DisplayName} (REG_SZ)
4646
DisplayNameResourceID={ID} (REG_SZ)

0 commit comments

Comments
 (0)