From 825fef0edf22ca0f3ba9c6346a3f2ef6cc5f5476 Mon Sep 17 00:00:00 2001 From: richfirely <97735555+richfirely@users.noreply.github.com> Date: Mon, 14 Oct 2024 17:11:40 -0400 Subject: [PATCH] Update Parameters.cs Minor doc fix on Parameters Get operations. --- src/Hl7.Fhir.Base/Model/Parameters.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Hl7.Fhir.Base/Model/Parameters.cs b/src/Hl7.Fhir.Base/Model/Parameters.cs index 9ced728c10..1f901fce2e 100644 --- a/src/Hl7.Fhir.Base/Model/Parameters.cs +++ b/src/Hl7.Fhir.Base/Model/Parameters.cs @@ -122,7 +122,7 @@ public void Remove(string name, bool matchPrefix = false) /// Searches for a parameter with the given name, and returns the matching parameter(s) /// /// The name of the parameter - /// If true, will remove all parameters which begin with the string given in the "name" parameter + /// If true, will retrieve all parameters which begin with the string given in the "name" parameter public IEnumerable Get(string name, bool matchPrefix = false) { if (name == null) throw new ArgumentNullException("name"); @@ -137,7 +137,7 @@ public IEnumerable Get(string name, bool matchPrefix = false /// Searches for a parameter with the given name, and returns the matching parameter(s) /// /// The name of the parameter - /// If true, will remove all parameters which begin with the string given in the "name" parameter + /// If true, will retrieve all parameters which begin with the string given in the "name" parameter public ParameterComponent GetSingle(string name, bool matchPrefix = false) { if (name == null) throw new ArgumentNullException("name"); @@ -176,4 +176,4 @@ private string DebuggerDisplay } } } -} \ No newline at end of file +}