From 4903df21f8fd9f0a5077c2c30266142dc9a60c8a Mon Sep 17 00:00:00 2001 From: Maarten Billemont Date: Sun, 26 Mar 2017 09:05:31 -0400 Subject: [PATCH] Sync up description of variants. --- core/c/mpw-types.h | 6 +++--- .../main/java/com/lyndir/masterpassword/MPSiteVariant.java | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/core/c/mpw-types.h b/core/c/mpw-types.h index a476d81c..49c3cd36 100644 --- a/core/c/mpw-types.h +++ b/core/c/mpw-types.h @@ -22,11 +22,11 @@ //// Types. typedef enum( unsigned int, MPSiteVariant ) { - /** Generate the password to log in with. */ + /** Generate a key for authentication. */ MPSiteVariantPassword, - /** Generate the login name to log in as. */ + /** Generate a name for identification. */ MPSiteVariantLogin, - /** Generate the answer to a security question. */ + /** Generate an answer to a security question. */ MPSiteVariantAnswer, }; diff --git a/core/java/algorithm/src/main/java/com/lyndir/masterpassword/MPSiteVariant.java b/core/java/algorithm/src/main/java/com/lyndir/masterpassword/MPSiteVariant.java index b6039f4b..23c3e463 100644 --- a/core/java/algorithm/src/main/java/com/lyndir/masterpassword/MPSiteVariant.java +++ b/core/java/algorithm/src/main/java/com/lyndir/masterpassword/MPSiteVariant.java @@ -11,11 +11,11 @@ import org.jetbrains.annotations.Contract; * @author lhunath, 14-12-02 */ public enum MPSiteVariant { - Password( "The password to log in with.", "Doesn't currently use a context.", // + Password( "Generate a key for authentication.", "Doesn't currently use a context.", // ImmutableList.of( "p", "password" ), "com.lyndir.masterpassword" ), - Login( "The username to log in as.", "Doesn't currently use a context.", // + Login( "Generate a name for identification.", "Doesn't currently use a context.", // ImmutableList.of( "l", "login" ), "com.lyndir.masterpassword.login" ), - Answer( "The answer to a security question.", "Empty for a universal site answer or\nthe most significant word(s) of the question.", // + Answer( "Generate an answer to a security question.", "Empty for a universal site answer or\nthe most significant word(s) of the question.", // ImmutableList.of( "a", "answer" ), "com.lyndir.masterpassword.answer" ); static final Logger logger = Logger.get( MPSiteType.class );