Skip to content

Commit bbcd46e

Browse files
author
dragonfly91
committed
Correction according the code review
1 parent a097f1f commit bbcd46e

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup/Cmdlets/Backup/BackupAzureRmRecoveryServicesBackupItem.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ namespace Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets
3333
public class BackupAzureRmRecoveryServicesBackupItem : RecoveryServicesBackupCmdletBase
3434
{
3535
/// <summary>
36-
/// The protected item on which backup has to be enabled.
36+
/// The protected item on which backup has to be triggered.
3737
/// </summary>
3838
[Parameter(Mandatory = true, HelpMessage = ParamHelpMsgs.Item.ProtectedItem,
3939
ValueFromPipeline = true)]

src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup/Cmdlets/Container/GetAzureRmRecoveryServicesBackupContainer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
namespace Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets
2626
{
2727
/// <summary>
28-
/// Fetches containers registered to the item according to the filters passed via the cmdlet parameters.
28+
/// Fetches containers registered to the vault according to the filters passed via the cmdlet parameters.
2929
/// </summary>
3030
[Cmdlet(VerbsCommon.Get, "AzureRmRecoveryServicesBackupContainer"),
3131
OutputType(typeof(ContainerBase), typeof(IList<ContainerBase>))]

src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup/Cmdlets/Jobs/StopAzureRmRecoveryServicesBackupJob.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@
2525
namespace Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets
2626
{
2727
/// <summary>
28-
/// Cancels a job. Returns the corresponding job object after this operation finishes.
28+
/// Cancels a job. Returns the corresponding job object after the trigger of the cancellation finishes.
29+
/// The job may not cancel successfully. The cmdlet will ensure that the service is notified that a cancellation has been triggered.
2930
/// </summary>
3031
[Cmdlet("Stop", "AzureRmRecoveryServicesBackupJob", DefaultParameterSetName = JobFilterSet),
3132
OutputType(typeof(JobBase))]

src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup/Cmdlets/RecoveryPoint/GetAzureRmRecoveryServicesBackupRecoveryPoint.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,23 +35,23 @@ public class GetAzureRmRecoveryServicesBackupRecoveryPoint : RecoveryServicesBac
3535
internal const string RecoveryPointIdParameterSet = "RecoveryPointId";
3636

3737
/// <summary>
38-
/// Start time of Time range for which recovery point need to be fetched
38+
/// Start time of Time range for which recovery point needs to be fetched
3939
/// </summary>
4040
[Parameter(Mandatory = true, ParameterSetName = DateTimeFilterParameterSet,
4141
ValueFromPipeline = false, Position = 0, HelpMessage = ParamHelpMsgs.RecoveryPoint.StartDate)]
4242
[ValidateNotNullOrEmpty]
4343
public DateTime StartDate { get; set; }
4444

4545
/// <summary>
46-
/// End time of Time range for which recovery point need to be fetched
46+
/// End time of Time range for which recovery points need to be fetched
4747
/// </summary>
4848
[Parameter(Mandatory = true, ParameterSetName = DateTimeFilterParameterSet, ValueFromPipeline = false,
4949
Position = 1, HelpMessage = ParamHelpMsgs.RecoveryPoint.EndDate)]
5050
[ValidateNotNullOrEmpty]
5151
public DateTime EndDate { get; set; }
5252

5353
/// <summary>
54-
/// Protected Item object for which recovery point need to be fetched
54+
/// Protected Item object for which recovery points need to be fetched
5555
/// </summary>
5656
[Parameter(Mandatory = true, ParameterSetName = DateTimeFilterParameterSet,
5757
ValueFromPipeline = true, Position = 2, HelpMessage = ParamHelpMsgs.RecoveryPoint.Item)]

0 commit comments

Comments
 (0)