You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucenenet.apache.org by rc...@apache.org on 2023/02/01 20:58:06 UTC

[lucenenet-site] branch asf-site updated: New website version built

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

rclabo pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/lucenenet-site.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new 732bcb823 New website version built
732bcb823 is described below

commit 732bcb8235054595168c53af32659994f099e398
Author: rclabo <rc...@users.noreply.github.com>
AuthorDate: Wed Feb 1 20:52:50 2023 +0000

    New website version built
---
 manifest.json             | 2 +-
 quick-start/tutorial.html | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/manifest.json b/manifest.json
index 48ac57ce5..de9ff3a3b 100644
--- a/manifest.json
+++ b/manifest.json
@@ -448,7 +448,7 @@
       "output": {
         ".html": {
           "relative_path": "quick-start/tutorial.html",
-          "hash": "THpdeqQY4F0jDBydAnqSsVTUCZTjH758ycjwVHuYG4A="
+          "hash": "nvxhWF9DyPUgJN9yqRpS+wdPaBsBnLDI8Rvl81cu4WA="
         }
       },
       "is_incremental": false,
diff --git a/quick-start/tutorial.html b/quick-start/tutorial.html
index 8faab0dbe..53f6dde26 100644
--- a/quick-start/tutorial.html
+++ b/quick-start/tutorial.html
@@ -236,7 +236,7 @@ indexConfig.OpenMode = OpenMode.CREATE;      //create/overwrite index
 IndexWriter writer = new IndexWriter(indexDir, indexConfig);
 </code></pre>
 <p>Then in the next block we add three documents to the index.  In this example we happen to specify that each document has two fields: title and domain. A document however could have as many fields as we like.</p>
-<p>We also specify here that title is a <code>TextField</code> which means that want the field to support full text searches, and we specify domain as a <code>StringField</code> which means we what to do exact match searches against that field.</p>
+<p>We also specify here that title is a <code>TextField</code> which means that we want the field to support full text searches, and we specify domain as a <code>StringField</code> which means we want to do exact match searches against that field.</p>
 <p>It's worth noting that the documents are buffered in RAM initially and are not written to the index in the <code>Directory</code> until we call <code>writer.Commit();</code></p>
 <pre><code class="lang-c#">//Add three documents to the index
 Document doc = new Document();