Skip to content

Commit dc03ae0

Browse files
authored
Merge pull request MicrosoftDocs#1179 from lgirvin/patch-2
Fix spelling: seperate -> separate
2 parents 2976003 + d440cbb commit dc03ae0

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

docs/2014/database-engine/dev-guide/unused-assembly-cleanup.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -149,9 +149,9 @@ using Microsoft.SqlServer.Server;
149149
/// <summary>
150150
/// Returns the comma-separated list of assembly ids contained in this instance
151151
/// </summary>
152-
/// <returns>string value that represents a comma-seperated list
152+
/// <returns>string value that represents a comma-separated list
153153
/// of assembly ids</returns>
154-
public string ToCommaSeperatedList()
154+
public string ToCommaSeparatedList()
155155
{
156156
StringBuilder sb = new StringBuilder();
157157
@@ -234,7 +234,7 @@ using Microsoft.SqlServer.Server;
234234
235235
cmd.CommandText = String.Format(CultureInfo.InvariantCulture,
236236
"SELECT name FROM sys.assemblies WHERE assembly_id IN ({0});",
237-
unusedAssemblySet.ToCommaSeperatedList());
237+
unusedAssemblySet.ToCommaSeparatedList());
238238
using (SqlDataReader rd = cmd.ExecuteReader())
239239
{
240240
while (rd.Read())
@@ -401,8 +401,8 @@ Public NotInheritable Class AssemblyCleanup
401401
''' <summary>
402402
''' Returns the comma-separated list of assembly ids contained in this instance
403403
''' </summary>
404-
''' <returns>string value that represents a comma-seperated list of assembly ids</returns>
405-
Public Function ToCommaSeperatedList() As String
404+
''' <returns>string value that represents a comma-separated list of assembly ids</returns>
405+
Public Function ToCommaSeparatedList() As String
406406
Dim sb As New StringBuilder()
407407
408408
If m_dictionary.Count > 0 Then
@@ -480,7 +480,7 @@ Public NotInheritable Class AssemblyCleanup
480480
481481
cmd.CommandText = String.Format(CultureInfo.InvariantCulture, _
482482
"SELECT name FROM sys.assemblies WHERE assembly_id IN ({0});", _
483-
unusedAssemblySet.ToCommaSeperatedList())
483+
unusedAssemblySet.ToCommaSeparatedList())
484484
Dim rd As SqlDataReader = cmd.ExecuteReader()
485485
Try
486486
While rd.Read()

0 commit comments

Comments
 (0)