Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 5B1BA19000 for ; Thu, 10 Sep 2015 11:27:48 +0000 (UTC) Received: (qmail 98646 invoked by uid 500); 10 Sep 2015 11:27:48 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 98573 invoked by uid 500); 10 Sep 2015 11:27:48 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 98555 invoked by uid 99); 10 Sep 2015 11:27:47 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 10 Sep 2015 11:27:47 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id D17DAE05E1; Thu, 10 Sep 2015 11:27:47 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: luc@apache.org To: commits@commons.apache.org Message-Id: <962f6ebae8d840b08d2fca0e588c5a86@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [math] Typo. Date: Thu, 10 Sep 2015 11:27:47 +0000 (UTC) Repository: commons-math Updated Branches: refs/heads/MATH_3_X 252a0137b -> f6b8dabda Typo. Project: http://git-wip-us.apache.org/repos/asf/commons-math/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-math/commit/f6b8dabd Tree: http://git-wip-us.apache.org/repos/asf/commons-math/tree/f6b8dabd Diff: http://git-wip-us.apache.org/repos/asf/commons-math/diff/f6b8dabd Branch: refs/heads/MATH_3_X Commit: f6b8dabda1724e54835bcabca5b880cee5659d93 Parents: 252a013 Author: Luc Maisonobe Authored: Thu Sep 10 13:27:30 2015 +0200 Committer: Luc Maisonobe Committed: Thu Sep 10 13:27:30 2015 +0200 ---------------------------------------------------------------------- src/main/java/org/apache/commons/math3/ode/events/EventFilter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-math/blob/f6b8dabd/src/main/java/org/apache/commons/math3/ode/events/EventFilter.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/math3/ode/events/EventFilter.java b/src/main/java/org/apache/commons/math3/ode/events/EventFilter.java index c18f58e..387cdd8 100644 --- a/src/main/java/org/apache/commons/math3/ode/events/EventFilter.java +++ b/src/main/java/org/apache/commons/math3/ode/events/EventFilter.java @@ -21,7 +21,7 @@ import java.util.Arrays; /** Wrapper used to detect only increasing or decreasing events. * - *

General {@link EventHandler events} are defined implicitely + *

General {@link EventHandler events} are defined implicitly * by a {@link EventHandler#g(double, double[]) g function} crossing * zero. This function needs to be continuous in the event neighborhood, * and its sign must remain consistent between events. This implies that