@@ -1309,13 +1309,13 @@ public static void copyDirectory(final File srcDir, final File destDir,
13091309 * it is not guaranteed that those operations will succeed.
13101310 * If the modification operation fails, no indication is provided.
13111311 * </p>
1312- * <h4 >Example: Copy directories only</h4 >
1312+ * <b >Example: Copy directories only</b >
13131313 * <pre>
13141314 * // only copy the directory structure
13151315 * FileUtils.copyDirectory(srcDir, destDir, DirectoryFileFilter.DIRECTORY);
13161316 * </pre>
13171317 *
1318- * <h4 >Example: Copy directories and txt files</h4 >
1318+ * <b >Example: Copy directories and txt files</b >
13191319 * <pre>
13201320 * // Create a filter for ".txt" files
13211321 * IOFileFilter txtSuffixFilter = FileFilterUtils.suffixFileFilter(".txt");
@@ -1361,13 +1361,13 @@ public static void copyDirectory(final File srcDir, final File destDir,
13611361 * not guaranteed that those operations will succeed.
13621362 * If the modification operation fails, no indication is provided.
13631363 * </p>
1364- * <h4 >Example: Copy directories only</h4 >
1364+ * <b >Example: Copy directories only</b >
13651365 * <pre>
13661366 * // only copy the directory structure
13671367 * FileUtils.copyDirectory(srcDir, destDir, DirectoryFileFilter.DIRECTORY, false);
13681368 * </pre>
13691369 *
1370- * <h4 >Example: Copy directories and txt files</h4 >
1370+ * <b >Example: Copy directories and txt files</b >
13711371 * <pre>
13721372 * // Create a filter for ".txt" files
13731373 * IOFileFilter txtSuffixFilter = FileFilterUtils.suffixFileFilter(".txt");
0 commit comments