diff --git a/src/Hl7.Fhir.Base/Model/Parameters.cs b/src/Hl7.Fhir.Base/Model/Parameters.cs index 9ced728c1..1f901fce2 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 +}