You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by bo...@apache.org on 2019/08/23 15:13:18 UTC

[commons-compress] 04/05: typo

This is an automated email from the ASF dual-hosted git repository.

bodewig pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-compress.git

commit 931b42b4b9e29eedf0adce3909655cb47522ce9b
Author: Stefan Bodewig <bo...@apache.org>
AuthorDate: Fri Aug 23 17:10:09 2019 +0200

    typo
---
 src/site/xdoc/examples.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/site/xdoc/examples.xml b/src/site/xdoc/examples.xml
index b295e77..488bbb5 100644
--- a/src/site/xdoc/examples.xml
+++ b/src/site/xdoc/examples.xml
@@ -163,7 +163,7 @@ CompressorInputStream input = new CompressorStreamFactory()
         <p>Assuming you want to extract an archive to a target
         directory you'd call <code>getNextEntry</code>, verify the
         entry can be read, construct a sane file name from the entry's
-        name, create a <codee>File</codee> and write all contents to
+        name, create a <code>File</code> and write all contents to
         it - here <code>IOUtils.copy</code> may come handy. You do so
         for every entry until <code>getNextEntry</code> returns
         <code>null</code>.</p>