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


The following commit(s) were added to refs/heads/master by this push:
     new ece6bea  Update home-quick-start.tmpl.partial
ece6bea is described below

commit ece6bea0a3c98961a77d7060b5615fccefabe725
Author: Antony Corbett <[email protected]>
AuthorDate: Wed Sep 23 18:21:31 2020 +0100

    Update home-quick-start.tmpl.partial
    
    Fix initializer
---
 websites/site/lucenetemplate/partials/home-quick-start.tmpl.partial | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/websites/site/lucenetemplate/partials/home-quick-start.tmpl.partial 
b/websites/site/lucenetemplate/partials/home-quick-start.tmpl.partial
index d572659..4819950 100644
--- a/websites/site/lucenetemplate/partials/home-quick-start.tmpl.partial
+++ b/websites/site/lucenetemplate/partials/home-quick-start.tmpl.partial
@@ -50,8 +50,8 @@ writer.Flush(triggerMerge: false, applyAllDeletes: false);
 <code class="csharp">// search with a phrase
 var phrase = new MultiPhraseQuery
 {
-    new Term("favoritePhrase", "brown");
-    new Term("favoritePhrase", "fox");
+    new Term("favoritePhrase", "brown"),
+    new Term("favoritePhrase", "fox")
 };
 </code>
 </pre>
@@ -74,4 +74,4 @@ foreach (var hit in hits)
 </div>
 </div>
 </div>
-</section>
\ No newline at end of file
+</section>

Reply via email to