Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornulltoken <emeric.fermas@gmail.com>2014-06-11 18:00:42 +0400
committernulltoken <emeric.fermas@gmail.com>2014-06-11 18:00:42 +0400
commite4e9ab74d59984421911179a283fe08f82091a77 (patch)
treeec93fdc6f7083e27cb45fe980dcae6181ef7b3f9 /LibGit2Sharp
parent9fbeaac1d0f8470a832b206b7f059c2594d10d20 (diff)
Fix xml doc related warnings
Diffstat (limited to 'LibGit2Sharp')
-rw-r--r--LibGit2Sharp/AmbiguousSpecificationException.cs2
-rw-r--r--LibGit2Sharp/BareRepositoryException.cs2
-rw-r--r--LibGit2Sharp/EmptyCommitException.cs2
-rw-r--r--LibGit2Sharp/InvalidSpecificationException.cs2
-rw-r--r--LibGit2Sharp/LibGit2SharpException.cs2
-rw-r--r--LibGit2Sharp/LockedFileException.cs2
-rw-r--r--LibGit2Sharp/MergeConflictException.cs2
-rw-r--r--LibGit2Sharp/NameConflictException.cs2
-rw-r--r--LibGit2Sharp/NonFastForwardException.cs2
-rw-r--r--LibGit2Sharp/RemoveFromIndexException.cs2
-rw-r--r--LibGit2Sharp/RepositoryNotFoundException.cs2
-rw-r--r--LibGit2Sharp/UnbornBranchException.cs2
-rw-r--r--LibGit2Sharp/UnmatchedPathException.cs2
-rw-r--r--LibGit2Sharp/UnmergedIndexEntriesException.cs2
-rw-r--r--LibGit2Sharp/UserCanceledException.cs2
15 files changed, 15 insertions, 15 deletions
diff --git a/LibGit2Sharp/AmbiguousSpecificationException.cs b/LibGit2Sharp/AmbiguousSpecificationException.cs
index ab0db742..3b9024cf 100644
--- a/LibGit2Sharp/AmbiguousSpecificationException.cs
+++ b/LibGit2Sharp/AmbiguousSpecificationException.cs
@@ -38,7 +38,7 @@ namespace LibGit2Sharp
/// <summary>
/// Initializes a new instance of the <see cref="AmbiguousSpecificationException"/> class with a serialized data.
/// </summary>
- /// <param name="info">The <see cref="SerializationInfo "/> that holds the serialized object data about the exception being thrown.</param>
+ /// <param name="info">The <see cref="SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="StreamingContext"/> that contains contextual information about the source or destination.</param>
protected AmbiguousSpecificationException(SerializationInfo info, StreamingContext context)
: base(info, context)
diff --git a/LibGit2Sharp/BareRepositoryException.cs b/LibGit2Sharp/BareRepositoryException.cs
index 9ba6ee32..00b61a04 100644
--- a/LibGit2Sharp/BareRepositoryException.cs
+++ b/LibGit2Sharp/BareRepositoryException.cs
@@ -40,7 +40,7 @@ namespace LibGit2Sharp
/// <summary>
/// Initializes a new instance of the <see cref="LibGit2Sharp.BareRepositoryException"/> class with a serialized data.
/// </summary>
- /// <param name="info">The <see cref="SerializationInfo "/> that holds the serialized object data about the exception being thrown.</param>
+ /// <param name="info">The <see cref="SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="StreamingContext"/> that contains contextual information about the source or destination.</param>
protected BareRepositoryException(SerializationInfo info, StreamingContext context)
: base(info, context)
diff --git a/LibGit2Sharp/EmptyCommitException.cs b/LibGit2Sharp/EmptyCommitException.cs
index 39804a78..aa54a5f3 100644
--- a/LibGit2Sharp/EmptyCommitException.cs
+++ b/LibGit2Sharp/EmptyCommitException.cs
@@ -39,7 +39,7 @@ namespace LibGit2Sharp
/// <summary>
/// Initializes a new instance of the <see cref="EmptyCommitException"/> class with a serialized data.
/// </summary>
- /// <param name="info">The <see cref="SerializationInfo "/> that holds the serialized object data about the exception being thrown.</param>
+ /// <param name="info">The <see cref="SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="StreamingContext"/> that contains contextual information about the source or destination.</param>
protected EmptyCommitException(SerializationInfo info, StreamingContext context)
: base(info, context)
diff --git a/LibGit2Sharp/InvalidSpecificationException.cs b/LibGit2Sharp/InvalidSpecificationException.cs
index fdeb9a23..5113f8c6 100644
--- a/LibGit2Sharp/InvalidSpecificationException.cs
+++ b/LibGit2Sharp/InvalidSpecificationException.cs
@@ -39,7 +39,7 @@ namespace LibGit2Sharp
/// <summary>
/// Initializes a new instance of the <see cref="InvalidSpecificationException"/> class with a serialized data.
/// </summary>
- /// <param name="info">The <see cref="SerializationInfo "/> that holds the serialized object data about the exception being thrown.</param>
+ /// <param name="info">The <see cref="SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="StreamingContext"/> that contains contextual information about the source or destination.</param>
protected InvalidSpecificationException(SerializationInfo info, StreamingContext context)
: base(info, context)
diff --git a/LibGit2Sharp/LibGit2SharpException.cs b/LibGit2Sharp/LibGit2SharpException.cs
index 609b815d..f5af473f 100644
--- a/LibGit2Sharp/LibGit2SharpException.cs
+++ b/LibGit2Sharp/LibGit2SharpException.cs
@@ -40,7 +40,7 @@ namespace LibGit2Sharp
/// <summary>
/// Initializes a new instance of the <see cref="LibGit2SharpException"/> class with a serialized data.
/// </summary>
- /// <param name="info">The <see cref="SerializationInfo "/> that holds the serialized object data about the exception being thrown.</param>
+ /// <param name="info">The <see cref="SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="StreamingContext"/> that contains contextual information about the source or destination.</param>
protected LibGit2SharpException(SerializationInfo info, StreamingContext context)
: base(info, context)
diff --git a/LibGit2Sharp/LockedFileException.cs b/LibGit2Sharp/LockedFileException.cs
index ab1da6e7..a086a7b0 100644
--- a/LibGit2Sharp/LockedFileException.cs
+++ b/LibGit2Sharp/LockedFileException.cs
@@ -39,7 +39,7 @@ namespace LibGit2Sharp
/// <summary>
/// Initializes a new instance of the <see cref="LibGit2Sharp.LockedFileException"/> class with a serialized data.
/// </summary>
- /// <param name="info">The <see cref="SerializationInfo "/> that holds the serialized object data about the exception being thrown.</param>
+ /// <param name="info">The <see cref="SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="StreamingContext"/> that contains contextual information about the source or destination.</param>
protected LockedFileException(SerializationInfo info, StreamingContext context)
: base(info, context)
diff --git a/LibGit2Sharp/MergeConflictException.cs b/LibGit2Sharp/MergeConflictException.cs
index 802b8df5..69ce3d6b 100644
--- a/LibGit2Sharp/MergeConflictException.cs
+++ b/LibGit2Sharp/MergeConflictException.cs
@@ -40,7 +40,7 @@ namespace LibGit2Sharp
/// <summary>
/// Initializes a new instance of the <see cref="LibGit2Sharp.MergeConflictException"/> class with a serialized data.
/// </summary>
- /// <param name="info">The <see cref="SerializationInfo "/> that holds the serialized object data about the exception being thrown.</param>
+ /// <param name="info">The <see cref="SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="StreamingContext"/> that contains contextual information about the source or destination.</param>
protected MergeConflictException(SerializationInfo info, StreamingContext context)
: base(info, context)
diff --git a/LibGit2Sharp/NameConflictException.cs b/LibGit2Sharp/NameConflictException.cs
index 75ec7807..16d1bf09 100644
--- a/LibGit2Sharp/NameConflictException.cs
+++ b/LibGit2Sharp/NameConflictException.cs
@@ -39,7 +39,7 @@ namespace LibGit2Sharp
/// <summary>
/// Initializes a new instance of the <see cref="NameConflictException"/> class with a serialized data.
/// </summary>
- /// <param name="info">The <see cref="SerializationInfo "/> that holds the serialized object data about the exception being thrown.</param>
+ /// <param name="info">The <see cref="SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="StreamingContext"/> that contains contextual information about the source or destination.</param>
protected NameConflictException(SerializationInfo info, StreamingContext context)
: base(info, context)
diff --git a/LibGit2Sharp/NonFastForwardException.cs b/LibGit2Sharp/NonFastForwardException.cs
index d12576c0..2cf4ccd9 100644
--- a/LibGit2Sharp/NonFastForwardException.cs
+++ b/LibGit2Sharp/NonFastForwardException.cs
@@ -40,7 +40,7 @@ namespace LibGit2Sharp
/// <summary>
/// Initializes a new instance of the <see cref="LibGit2Sharp.NonFastForwardException"/> class with a serialized data.
/// </summary>
- /// <param name="info">The <see cref="SerializationInfo "/> that holds the serialized object data about the exception being thrown.</param>
+ /// <param name="info">The <see cref="SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="StreamingContext"/> that contains contextual information about the source or destination.</param>
protected NonFastForwardException(SerializationInfo info, StreamingContext context)
: base(info, context)
diff --git a/LibGit2Sharp/RemoveFromIndexException.cs b/LibGit2Sharp/RemoveFromIndexException.cs
index 52e9ffc7..0a60b6db 100644
--- a/LibGit2Sharp/RemoveFromIndexException.cs
+++ b/LibGit2Sharp/RemoveFromIndexException.cs
@@ -39,7 +39,7 @@ namespace LibGit2Sharp
/// <summary>
/// Initializes a new instance of the <see cref="UnmatchedPathException"/> class with a serialized data.
/// </summary>
- /// <param name="info">The <see cref="SerializationInfo "/> that holds the serialized object data about the exception being thrown.</param>
+ /// <param name="info">The <see cref="SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="StreamingContext"/> that contains contextual information about the source or destination.</param>
protected RemoveFromIndexException(SerializationInfo info, StreamingContext context)
: base(info, context)
diff --git a/LibGit2Sharp/RepositoryNotFoundException.cs b/LibGit2Sharp/RepositoryNotFoundException.cs
index 114da2ea..b07ee913 100644
--- a/LibGit2Sharp/RepositoryNotFoundException.cs
+++ b/LibGit2Sharp/RepositoryNotFoundException.cs
@@ -39,7 +39,7 @@ namespace LibGit2Sharp
/// <summary>
/// Initializes a new instance of the <see cref="RepositoryNotFoundException"/> class with a serialized data.
/// </summary>
- /// <param name="info">The <see cref="SerializationInfo "/> that holds the serialized object data about the exception being thrown.</param>
+ /// <param name="info">The <see cref="SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="StreamingContext"/> that contains contextual information about the source or destination.</param>
protected RepositoryNotFoundException(SerializationInfo info, StreamingContext context)
: base(info, context)
diff --git a/LibGit2Sharp/UnbornBranchException.cs b/LibGit2Sharp/UnbornBranchException.cs
index 5899321e..2704d1a9 100644
--- a/LibGit2Sharp/UnbornBranchException.cs
+++ b/LibGit2Sharp/UnbornBranchException.cs
@@ -39,7 +39,7 @@ namespace LibGit2Sharp
/// <summary>
/// Initializes a new instance of the <see cref="UnbornBranchException"/> class with a serialized data.
/// </summary>
- /// <param name="info">The <see cref="SerializationInfo "/> that holds the serialized object data about the exception being thrown.</param>
+ /// <param name="info">The <see cref="SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="StreamingContext"/> that contains contextual information about the source or destination.</param>
protected UnbornBranchException(SerializationInfo info, StreamingContext context)
: base(info, context)
diff --git a/LibGit2Sharp/UnmatchedPathException.cs b/LibGit2Sharp/UnmatchedPathException.cs
index 19f061ef..0227e9bc 100644
--- a/LibGit2Sharp/UnmatchedPathException.cs
+++ b/LibGit2Sharp/UnmatchedPathException.cs
@@ -39,7 +39,7 @@ namespace LibGit2Sharp
/// <summary>
/// Initializes a new instance of the <see cref="UnmatchedPathException"/> class with a serialized data.
/// </summary>
- /// <param name="info">The <see cref="SerializationInfo "/> that holds the serialized object data about the exception being thrown.</param>
+ /// <param name="info">The <see cref="SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="StreamingContext"/> that contains contextual information about the source or destination.</param>
protected UnmatchedPathException(SerializationInfo info, StreamingContext context)
: base(info, context)
diff --git a/LibGit2Sharp/UnmergedIndexEntriesException.cs b/LibGit2Sharp/UnmergedIndexEntriesException.cs
index 0963c6b8..f221b4a6 100644
--- a/LibGit2Sharp/UnmergedIndexEntriesException.cs
+++ b/LibGit2Sharp/UnmergedIndexEntriesException.cs
@@ -40,7 +40,7 @@ namespace LibGit2Sharp
/// <summary>
/// Initializes a new instance of the <see cref="UnmergedIndexEntriesException"/> class with a serialized data.
/// </summary>
- /// <param name="info">The <see cref="SerializationInfo "/> that holds the serialized object data about the exception being thrown.</param>
+ /// <param name="info">The <see cref="SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="StreamingContext"/> that contains contextual information about the source or destination.</param>
protected UnmergedIndexEntriesException(SerializationInfo info, StreamingContext context)
: base(info, context)
diff --git a/LibGit2Sharp/UserCanceledException.cs b/LibGit2Sharp/UserCanceledException.cs
index a5c22667..fdc03396 100644
--- a/LibGit2Sharp/UserCanceledException.cs
+++ b/LibGit2Sharp/UserCanceledException.cs
@@ -39,7 +39,7 @@ namespace LibGit2Sharp
/// <summary>
/// Initializes a new instance of the <see cref="LibGit2Sharp.UserCancelledException"/> class with a serialized data.
/// </summary>
- /// <param name="info">The <see cref="SerializationInfo "/> that holds the serialized object data about the exception being thrown.</param>
+ /// <param name="info">The <see cref="SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="StreamingContext"/> that contains contextual information about the source or destination.</param>
protected UserCancelledException(SerializationInfo info, StreamingContext context)
: base(info, context)