diff --git a/Yubico.YubiKey/src/Yubico/YubiKey/Otp/OtpSettings.ExtendedFlags.cs b/Yubico.YubiKey/src/Yubico/YubiKey/Otp/OtpSettings.ExtendedFlags.cs index 8f02f888c..22d6ed8c0 100644 --- a/Yubico.YubiKey/src/Yubico/YubiKey/Otp/OtpSettings.ExtendedFlags.cs +++ b/Yubico.YubiKey/src/Yubico/YubiKey/Otp/OtpSettings.ExtendedFlags.cs @@ -69,11 +69,13 @@ public T UseNumericKeypad(bool setting = true) => ApplyFlag(Flag.UseNumericKeypad, setting); /// - /// Causes the trigger action of the YubiKey button to become faster. + /// Causes the trigger action of the YubiKey button to become faster on early model YubiKeys. /// /// - /// This only applies when one configuration is written. If both configurations are active, - /// this setting has no effect. + /// This setting is enabled by default on current generation YubiKeys. As such, the method is + /// maintained for backwards compatibility with older YubiKeys only. Moreover, the fast trigger + /// feature only applies when one slot configuration is written. If both configurations (slot 1 and + /// slot 2) are active / configured, this setting has no effect. /// public T UseFastTrigger(bool setting = true) => ApplyFlag(Flag.FastTrigger, setting);