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

nightowl888 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/lucenenet.git

commit 85b9321587cc6d4599f508fc0e79baa22f567bb5
Author: Shad Storhaug <[email protected]>
AuthorDate: Thu Mar 25 08:33:07 2021 +0700

    docs: Lucene.Net/Document/package.md: fixed broken links (see #300)
---
 src/Lucene.Net/Document/package.md | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/Lucene.Net/Document/package.md 
b/src/Lucene.Net/Document/package.md
index 3cc16d3..9a7d4c0 100644
--- a/src/Lucene.Net/Document/package.md
+++ b/src/Lucene.Net/Document/package.md
@@ -1,4 +1,4 @@
----
+---
 uid: Lucene.Net.Documents
 summary: *content
 ---
@@ -22,16 +22,16 @@ summary: *content
 
 The logical representation of a <xref:Lucene.Net.Documents.Document> for 
indexing and searching.
 
-The document package provides the user level logical representation of content 
to be indexed and searched. The package also provides utilities for working 
with <xref:Lucene.Net.Documents.Document>s and 
<xref:Lucene.Net.Index.IndexableField>s.
+The document package provides the user level logical representation of content 
to be indexed and searched. The package also provides utilities for working 
with <xref:Lucene.Net.Documents.Document>s and 
<xref:Lucene.Net.Index.IIndexableField>s.
 
 ## Document and IndexableField
 
-A <xref:Lucene.Net.Documents.Document> is a collection of 
<xref:Lucene.Net.Index.IndexableField>s. A 
<xref:Lucene.Net.Index.IndexableField> is a logical representation of a user's 
content that needs to be indexed or stored. 
<xref:Lucene.Net.Index.IndexableField>s have a number of properties that tell 
Lucene how to treat the content (like indexed, tokenized, stored, etc.) See the 
<xref:Lucene.Net.Documents.Field> implementation of 
<xref:Lucene.Net.Index.IndexableField> for specifics on th [...]
+A <xref:Lucene.Net.Documents.Document> is a collection of 
<xref:Lucene.Net.Index.IIndexableField>s. A 
<xref:Lucene.Net.Index.IIndexableField> is a logical representation of a user's 
content that needs to be indexed or stored. 
<xref:Lucene.Net.Index.IIndexableField>s have a number of properties that tell 
Lucene.NET how to treat the content (like indexed, tokenized, stored, etc.) See 
the <xref:Lucene.Net.Documents.Field> implementation of 
<xref:Lucene.Net.Index.IIndexableField> for specifi [...]
 
-Note: it is common to refer to <xref:Lucene.Net.Documents.Document>s having 
<xref:Lucene.Net.Documents.Field>s, even though technically they have 
<xref:Lucene.Net.Index.IndexableField>s.
+Note: it is common to refer to <xref:Lucene.Net.Documents.Document>s having 
<xref:Lucene.Net.Documents.Field>s, even though technically they have 
<xref:Lucene.Net.Index.IIndexableField>s.
 
 ## Working with Documents
 
 First and foremost, a <xref:Lucene.Net.Documents.Document> is something 
created by the user application. It is your job to create Documents based on 
the content of the files you are working with in your application (Word, txt, 
PDF, Excel or any other format.) How this is done is completely up to you. That 
being said, there are many tools available in other projects that can make the 
process of taking a file and converting it into a Lucene 
<xref:Lucene.Net.Documents.Document>. 
 
-The <xref:Lucene.Net.Documents.DateTools> is a utility class to make dates and 
times searchable (remember, Lucene only searches text). 
<xref:Lucene.Net.Documents.IntField>, <xref:Lucene.Net.Documents.LongField>, 
<xref:Lucene.Net.Documents.FloatField> and 
<xref:Lucene.Net.Documents.DoubleField> are a special helper class to simplify 
indexing of numeric values (and also dates) for fast range range queries with 
<xref:Lucene.Net.Search.NumericRangeQuery> (using a special sortable string 
repr [...]
\ No newline at end of file
+The <xref:Lucene.Net.Documents.DateTools> is a utility class to make dates and 
times searchable (remember, Lucene only searches text). 
<xref:Lucene.Net.Documents.Int32Field>, <xref:Lucene.Net.Documents.Int64Field>, 
<xref:Lucene.Net.Documents.SingleField> and 
<xref:Lucene.Net.Documents.DoubleField> are a special helper class to simplify 
indexing of numeric values (and also dates) for fast range range queries with 
<xref:Lucene.Net.Search.NumericRangeQuery> (using a special sortable string  
[...]
\ No newline at end of file

Reply via email to