Correct typo in code's comment. Fixes gh-1617
This commit is contained in:
parent
5cfc75eac2
commit
27a084f061
|
@ -97,7 +97,7 @@ List<ExtensionDt> resourceExts = patient.getUndeclaredExtensionsByUrl("http://fo
|
|||
// Get all non-modifier extensions regardless of URL
|
||||
List<ExtensionDt> nonModExts = patient.getUndeclaredExtensions();
|
||||
|
||||
//Get all non-modifier extensions regardless of URL
|
||||
// Get all modifier extensions regardless of URL
|
||||
List<ExtensionDt> modExts = patient.getUndeclaredModifierExtensions();
|
||||
//END SNIPPET: parseExtension
|
||||
|
||||
|
|
|
@ -150,7 +150,7 @@ List<Extension> resourceExts = patient.getExtensionsByUrl("http://fooextensions.
|
|||
// Get all non-modifier extensions regardless of URL
|
||||
List<Extension> nonModExts = patient.getExtension();
|
||||
|
||||
//Get all non-modifier extensions regardless of URL
|
||||
// Get all modifier extensions regardless of URL
|
||||
List<Extension> modExts = patient.getModifierExtension();
|
||||
//END SNIPPET: parseExtension
|
||||
|
||||
|
|
|
@ -74,7 +74,7 @@ List<ExtensionDt> resourceExts = patient.getUndeclaredExtensionsByUrl("http://fo
|
|||
// Get all non-modifier extensions regardless of URL
|
||||
List<ExtensionDt> nonModExts = patient.getUndeclaredExtensions();
|
||||
|
||||
//Get all non-modifier extensions regardless of URL
|
||||
// Get all modifier extensions regardless of URL
|
||||
List<ExtensionDt> modExts = patient.getUndeclaredModifierExtensions();
|
||||
//END SNIPPET: parseExtension
|
||||
|
||||
|
|
Loading…
Reference in New Issue