diff --git a/maptutorial/step10/logical/structuredefinition-tright.xml b/maptutorial/step10/logical/structuredefinition-tright.xml
index 0d87def..5e63246 100644
--- a/maptutorial/step10/logical/structuredefinition-tright.xml
+++ b/maptutorial/step10/logical/structuredefinition-tright.xml
@@ -21,7 +21,7 @@
-
+
diff --git a/maptutorial/step10/logical/structuredefinition-trightinner.xml b/maptutorial/step10/logical/structuredefinition-trightinner.xml
index e85defa..4aa41e6 100644
--- a/maptutorial/step10/logical/structuredefinition-trightinner.xml
+++ b/maptutorial/step10/logical/structuredefinition-trightinner.xml
@@ -4,7 +4,7 @@
url="http://hl7.org/fhir/StructureDefinition/elementdefinition-namespace">
-
+
@@ -20,7 +20,7 @@
-
+
diff --git a/maptutorial/step3/map/step3b.map b/maptutorial/step3/map/step3b.map
index 5968ef8..a0aeb82 100644
--- a/maptutorial/step3/map/step3b.map
+++ b/maptutorial/step3/map/step3b.map
@@ -6,6 +6,6 @@ uses "http://hl7.org/fhir/StructureDefinition/tutorial-left" alias TLeft as sour
uses "http://hl7.org/fhir/StructureDefinition/tutorial-right" alias TRight as target
group tutorial(source src : TLeft, target tgt : TRight) {
- src.a2 as a where a2.length()<20 -> tgt.a2 = a "rule_a20b";
+ src.a2 as a where (a.length()<20) -> tgt.a2 = a "rule_a20b";
}
diff --git a/maptutorial/step3/map/step3c.map b/maptutorial/step3/map/step3c.map
index e0390b8..77e8703 100644
--- a/maptutorial/step3/map/step3c.map
+++ b/maptutorial/step3/map/step3c.map
@@ -6,6 +6,6 @@ uses "http://hl7.org/fhir/StructureDefinition/tutorial-left" alias TLeft as sour
uses "http://hl7.org/fhir/StructureDefinition/tutorial-right" alias TRight as target
group tutorial(source src : TLeft, target tgt : TRight) {
- src.a2 as a check a2.length()<=20 -> tgt.a2 = a "rule_a20c";
+ src.a2 as a check (a.length()<=20) -> tgt.a2 = a "rule_a20c";
}
diff --git a/maptutorial/step4/map/steb4b.xml b/maptutorial/step4/map/steb4b.xml
deleted file mode 100644
index 007b5b2..0000000
--- a/maptutorial/step4/map/steb4b.xml
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/maptutorial/step4/map/step4a.map b/maptutorial/step4/map/step4a.map
index 64235b5..2690e91 100644
--- a/maptutorial/step4/map/step4a.map
+++ b/maptutorial/step4/map/step4a.map
@@ -6,5 +6,5 @@ uses "http://hl7.org/fhir/StructureDefinition/tutorial-left" alias TLeft as sour
uses "http://hl7.org/fhir/StructureDefinition/tutorial-right" alias TRight as target
group tutorial(source src : TLeft, target tgt : TRight) {
- src.a21 as a -> tgt.a21 = cast(a, 'FHIR.integer') "rule_a21a";
+ src.a21 as a -> tgt.a21 = cast(a, 'integer') "rule_a21a";
}
\ No newline at end of file