diff --git a/docs/manual/CoreTasks/antcall.html b/docs/manual/CoreTasks/antcall.html
index 50cdecbc8..2c4c94663 100644
--- a/docs/manual/CoreTasks/antcall.html
+++ b/docs/manual/CoreTasks/antcall.html
@@ -21,6 +21,14 @@ are set in the new project (See also the property task
You can also set properties in the new project from the old project by
using nested param tags. These properties are always passed regardless of the
setting of inheritAll. This allows you to parameterize your subprojects.
+When a target is invoked by antcall, all of its dependent targets will
+also be called within the context of any new parameters. For example. if
+the target "doSomethingElse" depended on the target "init", then the antcall of
+"doSomethingElse" will call "init" during the call. Of course, any properties defined in the
+antcall task or inherited from the calling target will be fixed and not overridable
+in the init task -or indeed in the "doSomethingElse" task.
+Parameters