fix doc comment

This commit is contained in:
snow flurry 2024-08-14 17:34:32 -07:00
parent 957499c0a5
commit 9ca4e87eb7

View file

@ -49,7 +49,7 @@ pub trait Nazrin {
async fn get_subnets() -> Result<Vec<Subnet>, String>;
/// Deletes an existing subnet.
async fn delete_subnet(interface: String) -> Result<(), String>;
// Gets the cloud-init user-data for the given instance.
/// Gets the cloud-init user-data for the given instance.
async fn get_instance_userdata(id: i32) -> Result<Vec<u8>, String>;
}