You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@calcite.apache.org by vl...@apache.org on 2014/11/23 17:16:46 UTC

incubator-calcite git commit: Fix typo in Glossary

Repository: incubator-calcite
Updated Branches:
  refs/heads/master c6d66d792 -> b8a6b1e36


Fix typo in Glossary


Project: http://git-wip-us.apache.org/repos/asf/incubator-calcite/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-calcite/commit/b8a6b1e3
Tree: http://git-wip-us.apache.org/repos/asf/incubator-calcite/tree/b8a6b1e3
Diff: http://git-wip-us.apache.org/repos/asf/incubator-calcite/diff/b8a6b1e3

Branch: refs/heads/master
Commit: b8a6b1e36d1244df8844fe536058ef0cbf1e62cf
Parents: c6d66d7
Author: Vladimir Sitnikov <si...@gmail.com>
Authored: Sun Nov 23 19:10:21 2014 +0300
Committer: Vladimir Sitnikov <si...@gmail.com>
Committed: Sun Nov 23 19:16:29 2014 +0300

----------------------------------------------------------------------
 core/src/main/java/org/apache/calcite/util/Glossary.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-calcite/blob/b8a6b1e3/core/src/main/java/org/apache/calcite/util/Glossary.java
----------------------------------------------------------------------
diff --git a/core/src/main/java/org/apache/calcite/util/Glossary.java b/core/src/main/java/org/apache/calcite/util/Glossary.java
index be32145..b390293 100644
--- a/core/src/main/java/org/apache/calcite/util/Glossary.java
+++ b/core/src/main/java/org/apache/calcite/util/Glossary.java
@@ -489,7 +489,7 @@ public interface Glossary {
   Glossary TEMPLATE_METHOD_PATTERN = null;
 
   /**
-   * Represent an operation to be performed on the elments of an object
+   * Represent an operation to be performed on the elements of an object
    * structure. Lets you define a new operation without changing the classes
    * of the elements on which it operates. (See <a
    * href="http://c2.com/cgi/wiki?VisitorPattern">GoF</a>.)