From 6518fe1b43aeec17d52ae14f1e1c150f004a123a Mon Sep 17 00:00:00 2001 From: mdb Date: Thu, 3 Nov 2005 22:03:11 +0000 Subject: [PATCH] Javadoc fixes. git-svn-id: https://samskivert.googlecode.com/svn/trunk@1723 6335cc39-0255-0410-8fd6-9bcaacd3b74c --- .../src/java/com/samskivert/util/KeyUtil.java | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/projects/samskivert/src/java/com/samskivert/util/KeyUtil.java b/projects/samskivert/src/java/com/samskivert/util/KeyUtil.java index a00ec9cd..d5805942 100644 --- a/projects/samskivert/src/java/com/samskivert/util/KeyUtil.java +++ b/projects/samskivert/src/java/com/samskivert/util/KeyUtil.java @@ -30,7 +30,7 @@ public class KeyUtil /** * Convenient function to make a random key of the specified total * length, containing length - 1 random digits, that is verifiable - * using {@link verifyLuhn}. + * using {@link #verifyLuhn}. */ public static String makeVerifiableKey (Random rand, int length) { @@ -69,7 +69,7 @@ public class KeyUtil /** * Takes a random string of digits and adds the appropriate check * digit in order to make the whole string verifyable using {@link - * verifyLuhn}. + * #verifyLuhn}. */ public static String makeLuhnVerifiable (String key) { @@ -82,8 +82,10 @@ public class KeyUtil /** * Return the luhn remainder for the given key. * - * {@see http://www.beachnet.com/~hstiles/cardtype.html } - * {@see http://www.google.com/search?q=luhn%20credit%20card } + * @see + * Instructions for computing the Lunh remainder + * @see + * Find more information with Google */ public static int getLuhnRemainder (String key) {