diff --git a/docs/html/libvirt-libvirt.html b/docs/html/libvirt-libvirt.html
index 5a5890e6ae..9136aad610 100644
--- a/docs/html/libvirt-libvirt.html
+++ b/docs/html/libvirt-libvirt.html
@@ -144,4 +144,4 @@ The content of this structure is not made public by the API.
Suspends an active domain, the process is frozen without further access to CPU resources and I/O but the memory used by the domain at the hypervisor level will stay allocated. Use virDomainResume() to reactivate the domain. This function may requires priviledged access.
domain:
a domain object
Returns:
0 in case of success and -1 in case of failure.
Function: virGetVersion
int virGetVersion (unsigned long * libVer, const char * type, unsigned long * typeVer)
Provides two information back, @libVer is the version of the library while @typeVer will be the version of the hypervisor type @type against which the library was compiled. If @type is NULL, "Xen" is assumed, if @type is unknown or not availble, an error code will be returned and @typeVer will be 0.
-
libVer:
return value for the library version (OUT)
type:
hypervisor type
typeVer:
return value for the version of the hypervisor (OUT)
Returns:
-1 in case of failure, 0 otherwise, and values for @libVer and @typeVer have the format major * 1,000,000 + minor * 1,000 + release.