/// A collection that contains no duplicate elements. This interface models the mathematical
/// Set abstraction.
- /// The order of elements in a set is dependant on (a)the data-structure implementation, and
+ /// The order of elements in a set is dependent on (a)the data-structure implementation, and
/// (b)the implementation of the various Set methods, and thus is not guaranteed.
///
- /// None of the Set implementations in this library are guranteed to be thread-safe
+ ///
None of the Set implementations in this library are guaranteed to be thread-safe
/// in any way unless wrapped in a SynchronizedSet.
///
/// The following table summarizes the binary operators that are supported by the Set class.
diff --git a/src/Spring/Spring.Core/Collections/PriorityQueue.cs b/src/Spring/Spring.Core/Collections/PriorityQueue.cs
index 1447f6cb..9679d4ea 100644
--- a/src/Spring/Spring.Core/Collections/PriorityQueue.cs
+++ b/src/Spring/Spring.Core/Collections/PriorityQueue.cs
@@ -248,7 +248,7 @@ namespace Spring.Collections
/// Performs an unsigned bitwise right shift with the specified number
///
///