From 285e0ad74661a432213f8bb9eb09af1858669cc3 Mon Sep 17 00:00:00 2001 From: zhufl Date: Fri, 14 Jun 2019 11:54:40 +0800 Subject: [PATCH] Fix :param: in docstring In docstring :param should be used instead of :param:. Change-Id: I366b5cc5c90ec654839deda4104605a0275374ef --- nova/virt/libvirt/volume/volume.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nova/virt/libvirt/volume/volume.py b/nova/virt/libvirt/volume/volume.py index 6da1be5dc821..30c5498934c3 100644 --- a/nova/virt/libvirt/volume/volume.py +++ b/nova/virt/libvirt/volume/volume.py @@ -140,10 +140,10 @@ class LibvirtBaseVolumeDriver(object): def extend_volume(self, connection_info, instance, requested_size): """Extend the volume. - :param: connection_info: connection information about the volume + :param connection_info: connection information about the volume that has been extended. - :param: instance: instance connected to the newly extended volume. - :param: requested_size: new extended size (in bytes) for the volume to + :param instance: instance connected to the newly extended volume. + :param requested_size: new extended size (in bytes) for the volume to be extended. :returns: the new size to use when resizing the disk in QEMU.