remove deprecated optional arguments

This commit is contained in:
yggverse 2024-10-09 10:19:38 +03:00
parent 3106844cc6
commit e2ab831d57
3 changed files with 9 additions and 14 deletions

View file

@ -56,7 +56,7 @@ impl Header {
}
// Actions
pub fn update(&self, title: Option<&str>, description: Option<&str>) {
pub fn update(&self, title: &str, description: &str) {
self.title.update(title, description);
}