Skip to content

Commit 29d0d72

Browse files
author
Kapil Borle
committed
Fix code documentation of ScriptRegionRequest
1 parent 36c15e6 commit 29d0d72

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/PowerShellEditorServices.Protocol/LanguageServer/ScriptRegionRequest.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,33 +23,33 @@ public static readonly
2323
class ScriptRegionRequestParams
2424
{
2525
/// <summary>
26-
/// Path of the file for which the markers are requested.
26+
/// Path of the file for which the formatting region is requested.
2727
/// </summary>
2828
public string fileUri;
2929

3030
/// <summary>
31-
/// Hint character
31+
/// Hint character.
3232
/// </summary>
3333
public string character;
3434

3535
/// <summary>
36-
/// 1-based line number of the character
36+
/// 1-based line number of the character.
3737
/// </summary>
3838
public int line;
3939

4040
/// <summary>
41-
/// 1-based column number of the character
41+
/// 1-based column number of the character.
4242
/// </summary>
4343
public int column;
4444
}
4545

4646
/// <summary>
47-
/// Class to encapsulate the result of marker request.
47+
/// Class to encapsulate the result of ScriptRegionRequest.
4848
/// </summary>
4949
class ScriptRegionRequestResult
5050
{
5151
/// <summary>
52-
/// A region in the script that encapsulates the given character/position which is suitable for
52+
/// A region in the script that encapsulates the given character/position which is suitable
5353
/// for formatting
5454
/// </summary>
5555
public ScriptRegion scriptRegion;

0 commit comments

Comments
 (0)