Skip to content

Commit a58c4af

Browse files
committed
typo: colleciton -> collection
1 parent 768d787 commit a58c4af

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

docs/vs-2015/snippets/csharp/VS_Snippets_Misc/wifcustomtokenst/cs/simplewebtoken/simplewebtokenhandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ protected virtual void ValidateAudience( string tokenAudience )
447447
/// Parses the token into a collection.
448448
/// </summary>
449449
/// <param name="encodedToken">The serialized token.</param>
450-
/// <returns>A colleciton of all name-value pairs from the token.</returns>
450+
/// <returns>A collection of all name-value pairs from the token.</returns>
451451
NameValueCollection ParseToken( string encodedToken )
452452
{
453453
if ( String.IsNullOrEmpty( encodedToken ) )

docs/vs-2015/snippets/csharp/VS_Snippets_Misc/wifcustomtokensts/cs/simplewebtoken/simplewebtokenhandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ protected virtual void ValidateAudience( string tokenAudience )
447447
/// Parses the token into a collection.
448448
/// </summary>
449449
/// <param name="encodedToken">The serialized token.</param>
450-
/// <returns>A colleciton of all name-value pairs from the token.</returns>
450+
/// <returns>A collection of all name-value pairs from the token.</returns>
451451
NameValueCollection ParseToken( string encodedToken )
452452
{
453453
if ( String.IsNullOrEmpty( encodedToken ) )

docs/vs-2015/snippets/csharp/VS_Snippets_Misc/wifrccustomtoken/cs/simplewebtoken/simplewebtokenhandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ protected virtual void ValidateAudience( string tokenAudience )
477477
/// Parses the token into a collection.
478478
/// </summary>
479479
/// <param name="encodedToken">The serialized token.</param>
480-
/// <returns>A colleciton of all name-value pairs from the token.</returns>
480+
/// <returns>A collection of all name-value pairs from the token.</returns>
481481
NameValueCollection ParseToken( string encodedToken )
482482
{
483483
if ( String.IsNullOrEmpty( encodedToken ) )

docs/vs-2015/snippets/csharp/VS_Snippets_Wpf/FlowDocumentSnippets/CSharp/Window1.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ void TextEffectsStuff()
351351
tfe.PositionStart = 0;
352352
tfe.PositionCount = int.MaxValue;
353353

354-
// Add this text effect to the FlowDocument's effects colleciton.
354+
// Add this text effect to the FlowDocument's effects collection.
355355
fd.TextEffects = new TextEffectCollection();
356356
fd.TextEffects.Add(tfe);
357357

docs/vs-2015/snippets/visualbasic/VS_Snippets_Wpf/FlowDocumentSnippets/visualbasic/window1.xaml.vb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ Namespace FlowDocumentSnippets
306306
tfe.PositionStart = 0
307307
tfe.PositionCount = Integer.MaxValue
308308

309-
' Add this text effect to the FlowDocument's effects colleciton.
309+
' Add this text effect to the FlowDocument's effects collection.
310310
fd.TextEffects = New TextEffectCollection()
311311
fd.TextEffects.Add(tfe)
312312

0 commit comments

Comments
 (0)