Re: [PATCH 1/2] docs: Fix typos in the code comment

2022-01-24 Thread Andrea Bolognani
On Wed, Jan 19, 2022 at 12:19:35PM +0800, Han Han wrote:
> 1. s/LifeCycle/Lifecycle/,
> 2. s/virConnectDomainEventTrayChangeReason/virDomainEventTrayChangeReason/
>
> Signed-off-by: Han Han 
> ---
>  include/libvirt/libvirt-domain.h  | 2 +-
>  include/libvirt/libvirt-network.h | 2 +-
>  include/libvirt/libvirt-nodedev.h | 2 +-
>  include/libvirt/libvirt-secret.h  | 2 +-
>  include/libvirt/libvirt-storage.h | 2 +-
>  src/conf/domain_conf.h| 2 +-
>  6 files changed, 6 insertions(+), 6 deletions(-)

Reviewed-by: Andrea Bolognani 

-- 
Andrea Bolognani / Red Hat / Virtualization



[PATCH 1/2] docs: Fix typos in the code comment

2022-01-18 Thread Han Han
1. s/LifeCycle/Lifecycle/,
2. s/virConnectDomainEventTrayChangeReason/virDomainEventTrayChangeReason/

Signed-off-by: Han Han 
---
 include/libvirt/libvirt-domain.h  | 2 +-
 include/libvirt/libvirt-network.h | 2 +-
 include/libvirt/libvirt-nodedev.h | 2 +-
 include/libvirt/libvirt-secret.h  | 2 +-
 include/libvirt/libvirt-storage.h | 2 +-
 src/conf/domain_conf.h| 2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/include/libvirt/libvirt-domain.h b/include/libvirt/libvirt-domain.h
index 5f0a9b7572..0647361952 100644
--- a/include/libvirt/libvirt-domain.h
+++ b/include/libvirt/libvirt-domain.h
@@ -4054,7 +4054,7 @@ typedef void 
(*virConnectDomainEventDiskChangeCallback)(virConnectPtr conn,
 void *opaque);
 
 /**
- * virConnectDomainEventTrayChangeReason:
+ * virDomainEventTrayChangeReason:
  *
  * The reason describing why the callback was called
  */
diff --git a/include/libvirt/libvirt-network.h 
b/include/libvirt/libvirt-network.h
index 398d8fccd4..80bd03878b 100644
--- a/include/libvirt/libvirt-network.h
+++ b/include/libvirt/libvirt-network.h
@@ -262,7 +262,7 @@ typedef enum {
  * virConnectNetworkEventLifecycleCallback:
  * @conn: connection object
  * @net: network on which the event occurred
- * @event: The specific virNetworkEventLifeCycleType which occurred
+ * @event: The specific virNetworkEventLifecycleType which occurred
  * @detail: contains some details on the reason of the event.
  *  It will be 0 for the while.
  * @opaque: application specified data
diff --git a/include/libvirt/libvirt-nodedev.h 
b/include/libvirt/libvirt-nodedev.h
index 245365b07f..0c01d51aab 100644
--- a/include/libvirt/libvirt-nodedev.h
+++ b/include/libvirt/libvirt-nodedev.h
@@ -229,7 +229,7 @@ typedef enum {
  * virConnectNodeDeviceEventLifecycleCallback:
  * @conn: connection object
  * @dev: node device on which the event occurred
- * @event: The specific virNodeDeviceEventLifeCycleType which occurred
+ * @event: The specific virNodeDeviceEventLifecycleType which occurred
  * @detail: contains some details on the reason of the event.
  * @opaque: application specified data
  *
diff --git a/include/libvirt/libvirt-secret.h b/include/libvirt/libvirt-secret.h
index b8e53674d8..bc1286883c 100644
--- a/include/libvirt/libvirt-secret.h
+++ b/include/libvirt/libvirt-secret.h
@@ -190,7 +190,7 @@ typedef enum {
  * virConnectSecretEventLifecycleCallback:
  * @conn: connection object
  * @secret: secret on which the event occurred
- * @event: The specific virSecretEventLifeCycleType which occurred
+ * @event: The specific virSecretEventLifecycleType which occurred
  * @detail: contains some details on the reason of the event.
  * @opaque: application specified data
  *
diff --git a/include/libvirt/libvirt-storage.h 
b/include/libvirt/libvirt-storage.h
index f89856b93e..f8c665a18f 100644
--- a/include/libvirt/libvirt-storage.h
+++ b/include/libvirt/libvirt-storage.h
@@ -488,7 +488,7 @@ typedef enum {
  * virConnectStoragePoolEventLifecycleCallback:
  * @conn: connection object
  * @pool: pool on which the event occurred
- * @event: The specific virStoragePoolEventLifeCycleType which occurred
+ * @event: The specific virStoragePoolEventLifecycleType which occurred
  * @detail: contains some details on the reason of the event.
  * @opaque: application specified data
  *
diff --git a/src/conf/domain_conf.h b/src/conf/domain_conf.h
index e2f35fe20b..6b25a91d80 100644
--- a/src/conf/domain_conf.h
+++ b/src/conf/domain_conf.h
@@ -2823,7 +2823,7 @@ struct _virDomainDef {
 virDomainResourceDef *resource;
 virDomainIdMapDef idmap;
 
-/* These 3 are based on virDomainLifeCycleAction enum flags */
+/* These 3 are based on virDomainLifecycleAction enum flags */
 int onReboot;
 int onPoweroff;
 int onCrash;
-- 
2.34.1