From commits-return-8394-archive-asf-public=cust-asf.ponee.io@groovy.apache.org Sat Apr 27 09:50:55 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 07B6F18077F for ; Sat, 27 Apr 2019 11:50:54 +0200 (CEST) Received: (qmail 16673 invoked by uid 500); 27 Apr 2019 09:50:54 -0000 Mailing-List: contact commits-help@groovy.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@groovy.apache.org Delivered-To: mailing list commits@groovy.apache.org Received: (qmail 16597 invoked by uid 99); 27 Apr 2019 09:50:54 -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; Sat, 27 Apr 2019 09:50:54 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 3275685476; Sat, 27 Apr 2019 09:50:54 +0000 (UTC) Date: Sat, 27 Apr 2019 09:50:59 +0000 To: "commits@groovy.apache.org" Subject: [groovy] 06/06: minor refactor: remove javadoc warnings (fix typo) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit From: paulk@apache.org In-Reply-To: <155635865355.7412.8818692507122166276@gitbox.apache.org> References: <155635865355.7412.8818692507122166276@gitbox.apache.org> X-Git-Host: gitbox.apache.org X-Git-Repo: groovy X-Git-Refname: refs/heads/GROOVY_2_5_X X-Git-Reftype: branch X-Git-Rev: 4230c1cdf7ac5e0982c004c4c6eef6f1f722fe3d X-Git-NotificationType: diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated Message-Id: <20190427095054.3275685476@gitbox.apache.org> This is an automated email from the ASF dual-hosted git repository. paulk pushed a commit to branch GROOVY_2_5_X in repository https://gitbox.apache.org/repos/asf/groovy.git commit 4230c1cdf7ac5e0982c004c4c6eef6f1f722fe3d Author: Paul King AuthorDate: Sat Apr 27 19:50:38 2019 +1000 minor refactor: remove javadoc warnings (fix typo) --- subprojects/groovy-sql/src/main/java/groovy/sql/DataSet.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subprojects/groovy-sql/src/main/java/groovy/sql/DataSet.java b/subprojects/groovy-sql/src/main/java/groovy/sql/DataSet.java index 0ea6b91..c067e25 100644 --- a/subprojects/groovy-sql/src/main/java/groovy/sql/DataSet.java +++ b/subprojects/groovy-sql/src/main/java/groovy/sql/DataSet.java @@ -53,7 +53,7 @@ import java.util.Set; * * You can write code like this: *
- * @{code
+ * {@code
  * def person = new DataSet(db, 'Person') // or db.dataSet('Person'), or db.dataSet(Person)
  * def janFrequentBuyers = person.findAll { it.purchaseCount > 10 && it.lastName == "January" }
  * def sortedPeopleOfInterest = janFrequentBuyers.