Fix doc style comment according to Rust; VSCode added line breaks
This commit is contained in:
parent
7857da8a0b
commit
b6c9582cf4
2 changed files with 13 additions and 7 deletions
|
@ -27,12 +27,14 @@ impl Appservice {
|
|||
Ok(())
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove an appservice registration
|
||||
* service_name is the name you send to register the service
|
||||
*/
|
||||
/// Remove an appservice registration
|
||||
///
|
||||
/// # Arguments
|
||||
///
|
||||
/// * `service_name` - the name you send to register the service previously
|
||||
pub fn unregister_appservice(&self, service_name: &str) -> Result<()> {
|
||||
self.id_appserviceregistrations.remove(service_name.as_bytes())?;
|
||||
self.id_appserviceregistrations
|
||||
.remove(service_name.as_bytes())?;
|
||||
Ok(())
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue