Improve testmerge publish API documentation

This commit is contained in:
Cyberboss
2017-11-06 10:32:38 -05:00
parent 3301b7cc69
commit 668c8e509f
+2 -2
View File
@@ -179,14 +179,14 @@ namespace TGServiceInterface.Components
/// <summary>
/// Check if we push a temporary branch to the remote when we make testmerge commits
/// </summary>
/// <returns>true if we push testmerge commits, false otherwise</returns>
/// <returns><see langword="true"/> if we publish testmerge commits to the remote, <see langword="false"/> otherwise</returns>
[OperationContract]
bool PushTestmergeCommits();
/// <summary>
/// Set if we push a temporary branch to the remote when we make testmerge commits
/// </summary>
/// <param name="newValue">true if we should push testmerge commits, false otherwise</param>
/// <param name="newValue"><see langword="true"/> if we testmerge commits should be published to the remote, <see langword="false"/> otherwise</param>
[OperationContract]
void SetPushTestmergeCommits(bool newValue);
}