mirror of https://github.com/apache/lucene.git
let's see if committing works for me -- fix errors in the file format
description, as discussed on the mailing list CVS: ---------------------------------------------------------------------- CVS: PR: CVS: If this change addresses a PR in the problem report tracking CVS: database, then enter the PR number(s) here. CVS: Obtained from: CVS: If this change has been taken from another system, such as NCSA, CVS: then name the system in this line, otherwise delete it. CVS: Submitted by: CVS: If this code has been contributed to Apache by someone else; i.e., CVS: they sent us a patch or a new module, then include their name/email CVS: address here. If this is your work then delete this line. CVS: Reviewed by: CVS: If we are doing pre-commit code reviews and someone else has CVS: reviewed your changes, include their name(s) here. CVS: If you have not had it reviewed then delete this line. git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150377 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b4f4634fd6
commit
bb402d4e96
|
@ -23,7 +23,7 @@
|
|||
languages. If these versions are to remain compatible with Jakarta
|
||||
Lucene, then a language-independent definition of the Lucene index
|
||||
format is required. This document thus attempts to provide a
|
||||
complete and independent definition of the Jakarta Lucene 1.3 file
|
||||
complete and independent definition of the Jakarta Lucene 1.4 file
|
||||
formats.
|
||||
</p>
|
||||
|
||||
|
@ -226,7 +226,7 @@
|
|||
</li>
|
||||
<li><p>Term Vectors. For each field in each document, the term vector
|
||||
(sometimes called document vector) is stored. A term vector consists
|
||||
of the term text, term frequency and term position.
|
||||
of term text and term frequency.
|
||||
</p>
|
||||
</li>
|
||||
<li><p>Deleted documents.
|
||||
|
@ -771,8 +771,9 @@
|
|||
<p>
|
||||
A file named "deletable"
|
||||
contains the names of files that are no longer used by the index, but
|
||||
which could not be deleted. This is only generated on Win32, where a
|
||||
file may not be deleted while it is still open.
|
||||
which could not be deleted. This is only used on Win32, where a
|
||||
file may not be deleted while it is still open. On other platforms
|
||||
the file contains only null bytes.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
|
|
Loading…
Reference in New Issue