diff --git a/process/ImporterMappingFunctions_lib/documentation.adoc b/process/ImporterMappingFunctions_lib/documentation.adoc
index d67b1229567a9d956de58ba797306194de401f35..25cade1e2f8a248ac7be618e75029cfac81316ab 100644
--- a/process/ImporterMappingFunctions_lib/documentation.adoc
+++ b/process/ImporterMappingFunctions_lib/documentation.adoc
@@ -33,7 +33,7 @@ For Example if you have a "DataQuery" datasource your select could look like thi
 --
 newSelect("ID, FIELD1, FIELD2, FIELD3")
     .from("TABLE1")
-    .build();
+    .toString();
 --
 
 Therefore the field "ID" would have the place 0 and "FIELD1" would have 1 and so on. 
diff --git a/process/Importer_lib/documentation.adoc b/process/Importer_lib/documentation.adoc
index 8adfe69a1dd4becd357b6a9ad5657cc3c8c5d691..d02ea9aed6efd5e6dcf97b4362ebd71a34323051 100644
--- a/process/Importer_lib/documentation.adoc
+++ b/process/Importer_lib/documentation.adoc
@@ -145,7 +145,7 @@ var yourConfig = {
 var yourConfig = {
     DataQuery: newSelect("PERSONID, FIRSTNAME, LASTNAME, DOB")
         .from("PERSON")
-        .build(),
+        .toString(),
     ImportCommand: "insert",
     AliasTo: "Data_alias_NoAudit",
     AliasFrom: "Data_alias",