bug 1494613: mozprofile: add docs for Pref::new and ::new_sticky r=whimboo

This commit is contained in:
Andreas Tolfsen 2018-09-27 13:17:56 +00:00
Родитель e57b0ae094
Коммит 4b95006f04
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -79,6 +79,7 @@ pub struct Pref {
}
impl Pref {
/// Create a new preference with `value`.
pub fn new<T>(value: T) -> Pref
where
T: Into<PrefValue>,
@ -89,6 +90,8 @@ impl Pref {
}
}
/// Create a new sticky, or locked, preference with `value`.
/// These cannot be changed by the user in `about:config`.
pub fn new_sticky<T>(value: T) -> Pref
where
T: Into<PrefValue>,