Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit ba31f82

Browse files
committed
Update xmldoc comments for Local/RepositoryModel
1 parent 07d07fa commit ba31f82

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

src/GitHub.Exports/Models/LocalRepositoryModel.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ public class LocalRepositoryModel : RepositoryModel, ILocalRepositoryModel, IEqu
2626
/// <param name="name">The repository name.</param>
2727
/// <param name="cloneUrl">The repository's clone URL.</param>
2828
/// <param name="localPath">The repository's local path.</param>
29+
/// <param name="gitService">The service used to refresh the repository's URL.</param>
2930
public LocalRepositoryModel(string name, UriString cloneUrl, string localPath, IGitService gitService)
3031
: base(name, cloneUrl)
3132
{
@@ -41,6 +42,7 @@ public LocalRepositoryModel(string name, UriString cloneUrl, string localPath, I
4142
/// Initializes a new instance of the <see cref="LocalRepositoryModel"/> class.
4243
/// </summary>
4344
/// <param name="path">The repository's local path.</param>
45+
/// <param name="gitService">The service used to find the repository's URL.</param>
4446
public LocalRepositoryModel(string path, IGitService gitService)
4547
: base(path, gitService)
4648
{

src/GitHub.Exports/Models/RepositoryModel.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ public RepositoryModel(
4040
/// The path to the local repository from which repository name and clone URL will be
4141
/// extracted.
4242
/// </param>
43+
/// <param name="gitService">The service used to find the repository's <see cref="Name"/> and <see cref="CloneUrl"/>.</param>
4344
protected RepositoryModel(string path, IGitService gitService)
4445
{
4546
Guard.ArgumentNotNull(path, nameof(path));

0 commit comments

Comments
 (0)