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

Commit 72fd428

Browse files
More comments
1 parent 2cf8ff9 commit 72fd428

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

src/GitHub.App/ViewModels/GitHubPane/PullRequestDetailViewModel.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,11 @@ public sealed class PullRequestDetailViewModel : PanePageViewModelBase, IPullReq
6161
/// </summary>
6262
/// <param name="pullRequestsService">The pull requests service.</param>
6363
/// <param name="sessionManager">The pull request session manager.</param>
64-
/// <param name="modelServiceFactory"></param>
64+
/// <param name="modelServiceFactory">The model service factory</param>
6565
/// <param name="usageTracker">The usage tracker.</param>
6666
/// <param name="teamExplorerContext">The context for tracking repo changes</param>
67-
/// <param name="files"></param>
68-
/// <param name="syncSubmodulesCommand"></param>
67+
/// <param name="files">The view model which will display the changed files</param>
68+
/// <param name="syncSubmodulesCommand">A command that will be run when <see cref="SyncSubmodules"/> is executed</param>
6969
[ImportingConstructor]
7070
public PullRequestDetailViewModel(
7171
IPullRequestService pullRequestsService,

src/GitHub.Exports.Reactive/Services/IPullRequestService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ IObservable<IPullRequestModel> CreatePullRequest(IModelService modelService,
8585
/// Sync submodules on the current branch.
8686
/// </summary>
8787
/// <param name="repository">The repository.</param>
88-
/// <param name="progress"></param>
88+
/// <param name="progress">A method that will be called with progress messages</param>
8989
Task<bool> SyncSubmodules(ILocalRepositoryModel repository, Action<string> progress);
9090

9191
/// <summary>

src/GitHub.Exports/Models/ILocalRepositoryModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public interface ILocalRepositoryModel : IRepositoryModel, INotifyPropertyChange
2929
/// Generates a http(s) url to the repository in the remote server, optionally
3030
/// pointing to a specific file and specific line range in it.
3131
/// </summary>
32-
/// <param name="linkType"></param>
32+
/// <param name="linkType">The type of repository link to create</param>
3333
/// <param name="path">The file to generate an url to. Optional.</param>
3434
/// <param name="startLine">A specific line, or (if specifying the <paramref name="endLine"/> as well) the start of a range</param>
3535
/// <param name="endLine">The end of a line range on the specified file.</param>

src/GitHub.InlineReviews/Commands/InlineCommentNavigationCommand.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ protected int GetCursorPoint(ITextView textView, InlineCommentNavigationParams p
7575
/// <summary>
7676
/// Gets the text buffer position for the specified line.
7777
/// </summary>
78-
/// <param name="textView"></param>
78+
/// <param name="textView">The text view containing the buffer</param>
7979
/// <param name="lineNumber">The 0-based line number.</param>
8080
/// <returns></returns>
8181
protected int GetCursorPoint(ITextView textView, int lineNumber)
@@ -218,10 +218,10 @@ protected IReadOnlyList<ITagInfo> GetTags(IEnumerable<ITextView> textViews)
218218
/// <summary>
219219
/// Shows the inline comments for the specified tag in a peek view.
220220
/// </summary>
221-
/// <param name="textView"></param>
222-
/// <param name="tag"></param>
223-
/// <param name="parameter"></param>
224-
/// <param name="allTextViews"></param>
221+
/// <param name="textView">The text view containing the tag</param>
222+
/// <param name="tag">The inline comment tag</param>
223+
/// <param name="parameter">The navigation parameter detailing a search from the specified tag</param>
224+
/// <param name="allTextViews">The full list of text views</param>
225225
protected void ShowPeekComments(
226226
InlineCommentNavigationParams parameter,
227227
ITextView textView,

src/GitHub.InlineReviews/Models/InlineCommentThreadModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class InlineCommentThreadModel : ReactiveObject, IInlineCommentThreadModel
2323
/// <param name="diffMatch">
2424
/// The last five lines of the thread's diff hunk, in reverse order.
2525
/// </param>
26-
/// <param name="comments"></param>
26+
/// <param name="comments">The comments in the thread</param>
2727
public InlineCommentThreadModel(
2828
string relativePath,
2929
string commitSha,

src/GitHub.InlineReviews/Services/IInlineCommentPeekService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public interface IInlineCommentPeekService
1515
/// Gets the line number for a peek session tracking point.
1616
/// </summary>
1717
/// <param name="session">The peek session.</param>
18-
/// <param name="point"></param>
18+
/// <param name="point">The peek session tracking point</param>
1919
/// <returns>
2020
/// A tuple containing the line number and whether the line number represents a line in the
2121
/// left hand side of a diff view.

0 commit comments

Comments
 (0)