You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by li...@apache.org on 2015/12/21 07:02:58 UTC

kylin git commit: minor, typo in comment

Repository: kylin
Updated Branches:
  refs/heads/2.x-staging bfe72bf6a -> 2ef13d08e


minor, typo in comment


Project: http://git-wip-us.apache.org/repos/asf/kylin/repo
Commit: http://git-wip-us.apache.org/repos/asf/kylin/commit/2ef13d08
Tree: http://git-wip-us.apache.org/repos/asf/kylin/tree/2ef13d08
Diff: http://git-wip-us.apache.org/repos/asf/kylin/diff/2ef13d08

Branch: refs/heads/2.x-staging
Commit: 2ef13d08ecf10379dc922a000772dbf4daad0d05
Parents: bfe72bf
Author: Yang Li <li...@apache.org>
Authored: Mon Dec 21 14:02:28 2015 +0800
Committer: Yang Li <li...@apache.org>
Committed: Mon Dec 21 14:02:28 2015 +0800

----------------------------------------------------------------------
 .../src/main/java/org/apache/kylin/measure/MeasureType.java        | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kylin/blob/2ef13d08/core-metadata/src/main/java/org/apache/kylin/measure/MeasureType.java
----------------------------------------------------------------------
diff --git a/core-metadata/src/main/java/org/apache/kylin/measure/MeasureType.java b/core-metadata/src/main/java/org/apache/kylin/measure/MeasureType.java
index f7523cf..e9d97c6 100644
--- a/core-metadata/src/main/java/org/apache/kylin/measure/MeasureType.java
+++ b/core-metadata/src/main/java/org/apache/kylin/measure/MeasureType.java
@@ -122,7 +122,7 @@ abstract public class MeasureType<T> {
         return false;
     }
 
-    /** The simply filling mode, one tuple per storage record. */
+    /** The simple filling mode, one tuple per storage record. */
     public void fillTupleSimply(Tuple tuple, int indexInTuple, Object measureValue) {
         tuple.setMeasureValue(indexInTuple, measureValue);
     }