Skip to content

Commit e81220b

Browse files
author
Oren (electricessence)
committed
Spelling fixes.
1 parent c55e2dd commit e81220b

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

ThreadSafety.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ private static ReadWriteHelper<object> GetReadWriteHelper(object key)
334334
/// <typeparam name="TSync">Type of the object sync context.</typeparam>
335335
/// <param name="syncObject">The main object that defines the synchronization context.</param>
336336
/// <param name="key">The key that represents what value will change.</param>
337-
/// <param name="condition">The condition funciton that if true, allows procedurally allows for a write lock. If at any time this function is false, the closure will not execute.</param>
337+
/// <param name="condition">The condition function that if true, allows procedurally allows for a write lock. If at any time this function is false, the closure will not execute.</param>
338338
/// <param name="closure">The function to execute while under a write lock if the condition remains true.</param>
339339
/// <param name="millisecondsTimeout">An optional value to allow for timeout.</param>
340340
/// <param name="throwsOnTimeout">If true, and a millisecondsTimeout value is provided, a TimeoutException will be thrown if the timeout is reached the instead of this method returning false.</param>
@@ -369,7 +369,7 @@ public static bool SynchronizeReadWrite<TSync>(
369369
/// <param name="syncObject">The main object that defines the synchronization context.</param>
370370
/// <param name="key">The key that represents what value will change.</param>
371371
/// <param name="result">The reference to become the result if a result is acquired from the closure during write.</param>
372-
/// <param name="condition">The condition funciton that if true, allows procedurally allows for a write lock. If at any time this function is false, the closure will not execute.</param>
372+
/// <param name="condition">The condition function that if true, allows procedurally allows for a write lock. If at any time this function is false, the closure will not execute.</param>
373373
/// <param name="closure">The function to execute while under a write lock if the condition remains true. 'result' becomes the return value.</param>
374374
/// <param name="millisecondsTimeout">An optional value to allow for timeout.</param>
375375
/// <param name="throwsOnTimeout">If true, and a millisecondsTimeout value is provided, a TimeoutException will be thrown if the timeout is reached the instead of this method returning false.</param>
@@ -404,7 +404,7 @@ public static bool SynchronizeReadWrite<TSync, T>(
404404
/// <typeparam name="TSync">Type of the object sync context.</typeparam>
405405
/// <param name="syncObject">The main object that defines the synchronization context.</param>
406406
/// <param name="key">The key that represents what value will change.</param>
407-
/// <param name="condition">The condition funciton that if true, allows procedurally allows for a write lock. If at any time this function is false, the closure will not execute.</param>
407+
/// <param name="condition">The condition function that if true, allows procedurally allows for a write lock. If at any time this function is false, the closure will not execute.</param>
408408
/// <param name="closure">The function to execute while under a write lock if the condition remains true.</param>
409409
/// <param name="millisecondsTimeout">An optional value to allow for timeout.</param>
410410
/// <param name="throwsOnTimeout">If true, and a millisecondsTimeout value is provided, a TimeoutException will be thrown if the timeout is reached the instead of this method returning false.</param>
@@ -442,7 +442,7 @@ public static bool SynchronizeReadWriteKeyAndObject<TSync>(
442442
/// <param name="syncObject">The main object that defines the synchronization context.</param>
443443
/// <param name="key">The key that represents what value will change.</param>
444444
/// <param name="result">The reference to become the result if a result is acquired from the closure during write.</param>
445-
/// <param name="condition">The condition funciton that if true, allows procedurally allows for a write lock. If at any time this function is false, the closure will not execute.</param>
445+
/// <param name="condition">The condition function that if true, allows procedurally allows for a write lock. If at any time this function is false, the closure will not execute.</param>
446446
/// <param name="closure">The function to execute while under a write lock if the condition remains true. 'result' becomes the return value.</param>
447447
/// <param name="millisecondsTimeout">An optional value to allow for timeout.</param>
448448
/// <param name="throwsOnTimeout">If true, and a millisecondsTimeout value is provided, a TimeoutException will be thrown if the timeout is reached the instead of this method returning false.</param>
@@ -484,7 +484,7 @@ public static bool SynchronizeReadWriteKeyAndObject<TSync, T>(
484484
/// </summary>
485485
/// <typeparam name="TSync">Type of the object sync context.</typeparam>
486486
/// <param name="syncObject">The main object that defines the synchronization context.</param>
487-
/// <param name="condition">The condition funciton that if true, allows procedurally allows for a write lock. If at any time this function is false, the closure will not execute.</param>
487+
/// <param name="condition">The condition function that if true, allows procedurally allows for a write lock. If at any time this function is false, the closure will not execute.</param>
488488
/// <param name="closure">The function to execute while under a write lock if the condition remains true.</param>
489489
/// <param name="millisecondsTimeout">An optional value to allow for timeout.</param>
490490
/// <param name="throwsOnTimeout">If true, and a millisecondsTimeout value is provided, a TimeoutException will be thrown if the timeout is reached the instead of this method returning false.</param>
@@ -512,7 +512,7 @@ public static bool SynchronizeReadWrite<TSync>(
512512
/// <typeparam name="T">Type of the result.</typeparam>
513513
/// <param name="syncObject">The main object that defines the synchronization context.</param>
514514
/// <param name="result">The reference to become the result if a result is acquired from the closure during write.</param>
515-
/// <param name="condition">The condition funciton that if true, allows procedurally allows for a write lock. If at any time this function is false, the closure will not execute.</param>
515+
/// <param name="condition">The condition function that if true, allows procedurally allows for a write lock. If at any time this function is false, the closure will not execute.</param>
516516
/// <param name="closure">The function to execute while under a write lock if the condition remains true. 'result' becomes the return value.</param>
517517
/// <param name="millisecondsTimeout">An optional value to allow for timeout.</param>
518518
/// <param name="throwsOnTimeout">If true, and a millisecondsTimeout value is provided, a TimeoutException will be thrown if the timeout is reached the instead of this method returning false.</param>

0 commit comments

Comments
 (0)