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

Commit

Permalink
More comments
Browse files Browse the repository at this point in the history
  • Loading branch information
StanleyGoldman committed Aug 9, 2018
1 parent 2cf8ff9 commit ff7be2a
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,11 @@ public sealed class PullRequestDetailViewModel : PanePageViewModelBase, IPullReq
/// </summary>
/// <param name="pullRequestsService">The pull requests service.</param>
/// <param name="sessionManager">The pull request session manager.</param>
/// <param name="modelServiceFactory"></param>
/// <param name="modelServiceFactory">The model service factory</param>
/// <param name="usageTracker">The usage tracker.</param>
/// <param name="teamExplorerContext">The context for tracking repo changes</param>
/// <param name="files"></param>
/// <param name="syncSubmodulesCommand"></param>
/// <param name="files">The view model which will display the changed files</param>
/// <param name="syncSubmodulesCommand">A command that will be run when <see cref="SyncSubmodules"/> is executed</param>
[ImportingConstructor]
public PullRequestDetailViewModel(
IPullRequestService pullRequestsService,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ IObservable<IPullRequestModel> CreatePullRequest(IModelService modelService,
/// Sync submodules on the current branch.
/// </summary>
/// <param name="repository">The repository.</param>
/// <param name="progress"></param>
/// <param name="progress">A method that will be called with progress messages</param>
Task<bool> SyncSubmodules(ILocalRepositoryModel repository, Action<string> progress);

/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion src/GitHub.Exports/Models/ILocalRepositoryModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public interface ILocalRepositoryModel : IRepositoryModel, INotifyPropertyChange
/// Generates a http(s) url to the repository in the remote server, optionally
/// pointing to a specific file and specific line range in it.
/// </summary>
/// <param name="linkType"></param>
/// <param name="linkType">The type of repository link to create</param>
/// <param name="path">The file to generate an url to. Optional.</param>
/// <param name="startLine">A specific line, or (if specifying the <paramref name="endLine"/> as well) the start of a range</param>
/// <param name="endLine">The end of a line range on the specified file.</param>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -218,10 +218,10 @@ protected IReadOnlyList<ITagInfo> GetTags(IEnumerable<ITextView> textViews)
/// <summary>
/// Shows the inline comments for the specified tag in a peek view.
/// </summary>
/// <param name="textView"></param>
/// <param name="tag"></param>
/// <param name="parameter"></param>
/// <param name="allTextViews"></param>
/// <param name="textView">The text view containing the tag</param>
/// <param name="tag">The inline comment tag</param>
/// <param name="parameter">The navigation parameter detailing a search from the specified tag</param>
/// <param name="allTextViews">The full list of text views</param>
protected void ShowPeekComments(
InlineCommentNavigationParams parameter,
ITextView textView,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class InlineCommentThreadModel : ReactiveObject, IInlineCommentThreadModel
/// <param name="diffMatch">
/// The last five lines of the thread's diff hunk, in reverse order.
/// </param>
/// <param name="comments"></param>
/// <param name="comments">The comments in the thread</param>
public InlineCommentThreadModel(
string relativePath,
string commitSha,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public interface IInlineCommentPeekService
/// Gets the line number for a peek session tracking point.
/// </summary>
/// <param name="session">The peek session.</param>
/// <param name="point"></param>
/// <param name="point">The peek session tracking point</param>
/// <returns>
/// A tuple containing the line number and whether the line number represents a line in the
/// left hand side of a diff view.
Expand Down

0 comments on commit ff7be2a

Please sign in to comment.