diff options
author | Javen O'Neal <onealj@apache.org> | 2017-06-20 09:52:43 +0000 |
---|---|---|
committer | Javen O'Neal <onealj@apache.org> | 2017-06-20 09:52:43 +0000 |
commit | 74528521a2a2abed5b0d04f98c7a881dc6618e0d (patch) | |
tree | 3cf84a7861df7ba04f0cb72e91b36c5a980c31f3 | |
parent | df3fdc03e961f789779cda28046c55aca0040010 (diff) | |
download | poi-74528521a2a2abed5b0d04f98c7a881dc6618e0d.tar.gz poi-74528521a2a2abed5b0d04f98c7a881dc6618e0d.zip |
javadoc
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1799332 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | src/java/org/apache/poi/ss/util/CellReference.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/java/org/apache/poi/ss/util/CellReference.java b/src/java/org/apache/poi/ss/util/CellReference.java index 6c36d942ba..7078429032 100644 --- a/src/java/org/apache/poi/ss/util/CellReference.java +++ b/src/java/org/apache/poi/ss/util/CellReference.java @@ -449,7 +449,7 @@ public class CellReference { /** * Takes in a 0-based base-10 column and returns a ALPHA-26 * representation. - * eg column #3 -> D + * eg {@code convertNumToColString(3)} returns {@code "D"} */ public static String convertNumToColString(int col) { // Excel counts column A as the 1st column, we |