diff --git a/src/use_web_notification.rs b/src/use_web_notification.rs index 0a3cefb..fd730d6 100644 --- a/src/use_web_notification.rs +++ b/src/use_web_notification.rs @@ -281,7 +281,7 @@ pub struct UseWebNotificationOptions { #[builder(into)] silent: Option, - /// A JsValue array specifying the vibration pattern in which the device is vibrating and not vibrating. + /// A `Vec` value specifying the vibration pattern in which the device is vibrating and not vibrating. #[builder(into)] vibrate: Option>, @@ -416,7 +416,7 @@ pub struct ShowOptions { #[builder(into)] silent: Option, - /// A JsValue array specifying the vibration pattern in which the device is vibrating and not vibrating. + /// A `Vec` value specifying the vibration pattern in which the device is vibrating and not vibrating. #[builder(into)] vibrate: Option>, }