From commits-return-110187-archive-asf-public=cust-asf.ponee.io@lucene.apache.org Tue Sep 17 21:06:52 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id 49D90180645 for ; Tue, 17 Sep 2019 23:06:52 +0200 (CEST) Received: (qmail 49018 invoked by uid 500); 17 Sep 2019 21:06:51 -0000 Mailing-List: contact commits-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@lucene.apache.org Delivered-To: mailing list commits@lucene.apache.org Received: (qmail 49009 invoked by uid 99); 17 Sep 2019 21:06:51 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Sep 2019 21:06:51 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 746E880932; Tue, 17 Sep 2019 21:06:51 +0000 (UTC) Date: Tue, 17 Sep 2019 21:06:51 +0000 To: "commits@lucene.apache.org" Subject: [lucene-solr] branch branch_8x updated: LUCENE-8981: fix typo in javadoc that breaks precommit MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <156875441111.26220.10978817188756767118@gitbox.apache.org> From: dsmiley@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: lucene-solr X-Git-Refname: refs/heads/branch_8x X-Git-Reftype: branch X-Git-Oldrev: a80534a589d20b9aacdcc8677b5b30747f3b893a X-Git-Newrev: 4e20227ee583f291d1f89cad808baeb3eea4d22b X-Git-Rev: 4e20227ee583f291d1f89cad808baeb3eea4d22b X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. dsmiley pushed a commit to branch branch_8x in repository https://gitbox.apache.org/repos/asf/lucene-solr.git The following commit(s) were added to refs/heads/branch_8x by this push: new 4e20227 LUCENE-8981: fix typo in javadoc that breaks precommit 4e20227 is described below commit 4e20227ee583f291d1f89cad808baeb3eea4d22b Author: David Smiley AuthorDate: Tue Sep 17 17:07:50 2019 -0400 LUCENE-8981: fix typo in javadoc that breaks precommit --- .../src/java/org/apache/lucene/analysis/ja/util/DictionaryBuilder.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lucene/analysis/kuromoji/src/java/org/apache/lucene/analysis/ja/util/DictionaryBuilder.java b/lucene/analysis/kuromoji/src/java/org/apache/lucene/analysis/ja/util/DictionaryBuilder.java index 5004b62..58ab4e9 100644 --- a/lucene/analysis/kuromoji/src/java/org/apache/lucene/analysis/ja/util/DictionaryBuilder.java +++ b/lucene/analysis/kuromoji/src/java/org/apache/lucene/analysis/ja/util/DictionaryBuilder.java @@ -33,7 +33,7 @@ import java.util.Locale; * files, roughly following the conventions of IPADIC. JapaneseTokenizer uses dictionaries built * with this tool. Note that the input files required by this build generally must be generated from * a corpus of real text using tools that are not part of Lucene.

- * @lucene.experimenal + * @lucene.experimental */ public class DictionaryBuilder {