[FILEUPLOAD-234] Fix section "Resource cleanup" of the user guide.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/fileupload/trunk@1638131 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 0370ce9..eac05b8 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -44,6 +44,7 @@
 
   <body>
     <release version="1.4" date="TBA" description="TBA">
+      <action issue="FILEUPLOAD-234" dev="tn" type="fix">Fix section "Resource cleanup" of the user guide</action>
       <action issue="FILEUPLOAD-237" dev="tn" type="fix">Fix streaming example: use FileItem.getInputStream() instead of openStream()</action>
       <action issue="FILEUPLOAD-248" dev="ecki" type="fix">DiskFileItem might suppress critical IOExceptions on rename - use FileUtil.move instead</action>
       <action issue="FILEUPLOAD-251" dev="sebb" type="fix">DiskFileItem#getTempFile() is broken</action>
diff --git a/src/site/xdoc/using.xml b/src/site/xdoc/using.xml
index 8e2113b..410ea57 100644
--- a/src/site/xdoc/using.xml
+++ b/src/site/xdoc/using.xml
@@ -284,8 +284,8 @@
       </p>
       <p>
         Such temporary files are deleted automatically, if they are no longer
-        used (more precisely, if the corresponding instance of <code>java.io.File</code>
-        is garbage collected. This is done silently by the <code>org.apache.commons.io.FileCleaner</code>
+        used (more precisely, if the corresponding instance of <code>DiskFileItem</code>
+        is garbage collected. This is done silently by the <code>org.apache.commons.io.FileCleanerTracker</code>
         class, which starts a reaper thread.
       </p>
       <p>