You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by md...@apache.org on 2020/07/24 21:21:39 UTC

[lucene-solr] branch master updated: LUCENE-9429 add missing semicolon (#1673)

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

mdrob pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/master by this push:
     new d064260  LUCENE-9429 add missing semicolon (#1673)
d064260 is described below

commit d0642600ff1a09c2f9e1a641f5d49b4974c9523c
Author: Zeno Gantner <ze...@users.noreply.github.com>
AuthorDate: Fri Jul 24 23:21:27 2020 +0200

    LUCENE-9429 add missing semicolon (#1673)
---
 lucene/core/src/java/overview.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lucene/core/src/java/overview.html b/lucene/core/src/java/overview.html
index b8f21e9..95d1589 100644
--- a/lucene/core/src/java/overview.html
+++ b/lucene/core/src/java/overview.html
@@ -31,7 +31,7 @@ to check if the results are what we expect):</p>
     Analyzer analyzer = new StandardAnalyzer();
 
     Path indexPath = Files.createTempDirectory("tempIndex");
-    Directory directory = FSDirectory.open(indexPath)
+    Directory directory = FSDirectory.open(indexPath);
     IndexWriterConfig config = new IndexWriterConfig(analyzer);
     IndexWriter iwriter = new IndexWriter(directory, config);
     Document doc = new Document();