Skip to content

Commit f8a682b

Browse files
committed
Fix comments
Signed-off-by: Victor Chang <[email protected]>
1 parent 8771dab commit f8a682b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Api/IInputDataPlugin.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ namespace Monai.Deploy.InformaticsGateway.Api
2323
/// <summary>
2424
/// <c>IInputDataPlugin</c> enables lightweight data processing over incoming data received from supported data ingestion
2525
/// services.
26-
/// Refer to <see cref="IOutputDataPluginEngine" /> for additional details.
26+
/// Refer to <see cref="IInputDataPluginEngine" /> for additional details.
2727
/// </summary>
2828
public interface IInputDataPlugin
2929
{

src/Api/MonaiApplicationEntity.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public class MonaiApplicationEntity : MongoDBEntityBase
7373
public List<string> Workflows { get; set; } = default!;
7474

7575
/// <summary>
76-
/// Optional list of data input plug-in type names to be executed by the <see cref="IOutputDataPluginEngine"/>.
76+
/// Optional list of data input plug-in type names to be executed by the <see cref="IInputDataPluginEngine"/>.
7777
/// </summary>
7878
public List<string> PluginAssemblies { get; set; } = default!;
7979

src/InformaticsGateway/Test/Plugins/TestInputDataPlugins.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public class TestInputDataPluginResumeWorkflow : IInputDataPlugin
4545
public class TestInputDataPluginModifyDicomFile : IInputDataPlugin
4646
{
4747
public static readonly DicomTag ExpectedTag = DicomTag.PatientAddress;
48-
public static readonly string ExpectedValue = "Aborted by TestInputDataPluginModifyDicomFile";
48+
public static readonly string ExpectedValue = "Added by TestInputDataPluginModifyDicomFile";
4949

5050
public Task<(DicomFile dicomFile, FileStorageMetadata fileMetadata)> Execute(DicomFile dicomFile, FileStorageMetadata fileMetadata)
5151
{

0 commit comments

Comments
 (0)