From bbc51af042eb824f80d0b75d7cf26bc0358c2d40 Mon Sep 17 00:00:00 2001 From: Howard Yang Date: Mon, 18 Apr 2022 11:42:33 +0800 Subject: [PATCH] Change some constant name in comments to snake case --- src/api/customization.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/api/customization.rs b/src/api/customization.rs index 03025c5..8f3319f 100644 --- a/src/api/customization.rs +++ b/src/api/customization.rs @@ -50,7 +50,7 @@ pub trait Customization { /// /// - The minimum PIN length must be at least 4. /// - The minimum PIN length must be at most 63. - /// - default_min_pin_length_rp_ids() must be non-empty if MAX_RP_IDS_LENGTH is 0. + /// - default_min_pin_length_rp_ids() must be non-empty if max_rp_ids_length() is 0. /// /// Requiring longer PINs can help establish trust between users and relying /// parties. It makes user verification harder to break, but less convenient. @@ -64,7 +64,7 @@ pub trait Customization { /// /// # Invariant /// - /// - default_min_pin_length_rp_ids() must be non-empty if MAX_RP_IDS_LENGTH is 0 + /// - default_min_pin_length_rp_ids() must be non-empty if max_rp_ids_length() is 0 /// /// Only the RP IDs listed in default_min_pin_length_rp_ids are allowed to read /// the minimum PIN length with the minPinLength extension.