spelling: error ids in ErrorRecord (#2258)

This commit is contained in:
Josh Soref 2016-09-14 15:51:07 -04:00 committed by Jason Shirk
parent 1a04ad4cdb
commit fb467d497d
2 changed files with 6 additions and 6 deletions

View file

@ -1535,7 +1535,7 @@ namespace Microsoft.PowerShell.Commands
{
string message = StringUtil.Format(ComputerResources.NoResorePoint, id);
ArgumentException e = new ArgumentException(message);
ErrorRecord errorrecord = new ErrorRecord(e, "NoResorePoint", ErrorCategory.InvalidArgument, null);
ErrorRecord errorrecord = new ErrorRecord(e, "NoRestorePoint", ErrorCategory.InvalidArgument, null);
WriteError(errorrecord);
}
}

View file

@ -827,7 +827,7 @@ namespace System.Management.Automation
{
ExecutionError.Add(
new ErrorRecord(e.Error,
"ConainerParentJobStartError",
"ContainerParentJobStartError",
ErrorCategory.
InvalidResult,
childJob));
@ -911,7 +911,7 @@ namespace System.Management.Automation
"Finished starting child job asynchronously, child InstanceId: {0}", childJob.InstanceId.ToString());
if (e.Error != null)
{
ExecutionError.Add(new ErrorRecord(e.Error, "ConainerParentJobStartAsyncError",
ExecutionError.Add(new ErrorRecord(e.Error, "ContainerParentJobStartAsyncError",
ErrorCategory.InvalidResult, childJob));
_tracer.WriteMessage(TraceClassName, "StartJobAsync-Handler", Guid.Empty, this,
"Child job asynchronously had error, child InstanceId: {0}", childJob.InstanceId.ToString());
@ -1249,7 +1249,7 @@ namespace System.Management.Automation
"Finished unblock child job asynchronously, child InstanceId: {0}", job.InstanceId.ToString());
if (e.Error != null)
{
ExecutionError.Add(new ErrorRecord(e.Error, "ConainerParentJobUnblockError",
ExecutionError.Add(new ErrorRecord(e.Error, "ContainerParentJobUnblockError",
ErrorCategory.InvalidResult, childJob));
_tracer.WriteMessage(TraceClassName, "UnblockJob-Handler", Guid.Empty, this,
"Child job asynchronously had error, child InstanceId: {0}", job.InstanceId.ToString());
@ -1314,7 +1314,7 @@ namespace System.Management.Automation
"Finished unblock child job asynchronously, child InstanceId: {0}", job.InstanceId.ToString());
if (e.Error != null)
{
ExecutionError.Add(new ErrorRecord(e.Error, "ConainerParentJobUnblockError",
ExecutionError.Add(new ErrorRecord(e.Error, "ContainerParentJobUnblockError",
ErrorCategory.InvalidResult, childJob));
_tracer.WriteMessage(TraceClassName, "UnblockJobAsync-Handler", Guid.Empty, this,
"Child job asynchronously had error, child InstanceId: {0}", job.InstanceId.ToString());
@ -1663,7 +1663,7 @@ namespace System.Management.Automation
"Finished stopping child job asynchronously, child InstanceId: {0}", job.InstanceId.ToString());
if (e.Error != null)
{
ExecutionError.Add(new ErrorRecord(e.Error, "ConainerParentJobStopAsyncError",
ExecutionError.Add(new ErrorRecord(e.Error, "ContainerParentJobStopAsyncError",
ErrorCategory.InvalidResult, childJob));
_tracer.WriteMessage(TraceClassName, "StopJobAsync-Handler", Guid.Empty, this,
"Child job asynchronously had error, child InstanceId: {0}", job.InstanceId.ToString());