Fixed 3 compiler warnings that were occurring in Nuclex.Support; minor improvements to the documentation

git-svn-id: file:///srv/devel/repo-conversion/nusu@90 d2e56fa2-650e-0410-a79f-9358c0239efd
This commit is contained in:
Markus Ewald 2008-08-14 21:14:40 +00:00
parent f2bacc5411
commit b0e76b4800
3 changed files with 6 additions and 6 deletions

View file

@ -85,7 +85,7 @@ namespace Nuclex.Support.Tracking {
/// <remarks>
/// Any exceptions raised in the background operation will be thrown
/// in this method. If you decide to override this method, you should
/// call End() first (and let any possible exception through to your
/// call Wait() first (and let any possible exception through to your
/// caller).
/// </remarks>
public virtual void Join() {
@ -97,7 +97,7 @@ namespace Nuclex.Support.Tracking {
if(!Ended)
Wait();
// Allow the implementor to throw an exception in case an error has occured
// Allow the implementer to throw an exception in case an error has occured
ReraiseExceptions();
}