diff options
author | Eduardo Habkost <ehabkost@redhat.com> | 2020-10-02 22:54:20 -0400 |
---|---|---|
committer | Eduardo Habkost <ehabkost@redhat.com> | 2020-10-06 11:09:35 -0400 |
commit | 258c732769038b5c67ba572523961246651c6583 (patch) | |
tree | e594ed8e8de572a8768f8e67643d9a2d10df8a7b /docs | |
parent | d5b9959dd7714e8451608f3ccb58f13b9e7d3147 (diff) | |
download | qemu-258c732769038b5c67ba572523961246651c6583.zip |
docs/devel/qom: Fix indentation of bulleted list
The list was incorrectly parsed as a literal block due to
indentation.
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20201003025424.199291-3-ehabkost@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/devel/qom.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/devel/qom.rst b/docs/devel/qom.rst index 0b943b2a1a..c4857d95c8 100644 --- a/docs/devel/qom.rst +++ b/docs/devel/qom.rst @@ -8,9 +8,9 @@ The QEMU Object Model provides a framework for registering user creatable types and instantiating objects from those types. QOM provides the following features: - - System for dynamically registering types - - Support for single-inheritance of types - - Multiple inheritance of stateless interfaces +- System for dynamically registering types +- Support for single-inheritance of types +- Multiple inheritance of stateless interfaces .. code-block:: c :caption: Creating a minimal type |