qom: Use ``code`` Sphinx syntax where appropriate

Replace gtkdoc markup with Sphinx ``code`` syntax.

Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Message-Id: <20200910221526.10041-4-ehabkost@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
Eduardo Habkost 2020-09-10 18:15:20 -04:00 committed by Paolo Bonzini
parent 11e1c3addf
commit 78170df827
1 changed files with 3 additions and 3 deletions

View File

@ -203,8 +203,8 @@ typedef struct InterfaceInfo InterfaceInfo;
* an interface instance should always be of incomplete type in order to be * an interface instance should always be of incomplete type in order to be
* sure it cannot be dereferenced. That is, you should define the * sure it cannot be dereferenced. That is, you should define the
* 'typedef struct SomethingIf SomethingIf' so that you can pass around * 'typedef struct SomethingIf SomethingIf' so that you can pass around
* 'SomethingIf *si' arguments, but not define a 'struct SomethingIf { ... }'. * ``SomethingIf *si`` arguments, but not define a ``struct SomethingIf { ... }``.
* The only things you can validly do with a 'SomethingIf *' are to pass it as * The only things you can validly do with a ``SomethingIf *`` are to pass it as
* an argument to a method on its corresponding SomethingIfClass, or to * an argument to a method on its corresponding SomethingIfClass, or to
* dynamically cast it to an object that implements the interface. * dynamically cast it to an object that implements the interface.
* *
@ -301,7 +301,7 @@ typedef struct InterfaceInfo InterfaceInfo;
* *
* Alternatively, object_class_by_name() can be used to obtain the class and * Alternatively, object_class_by_name() can be used to obtain the class and
* its non-overridden methods for a specific type. This would correspond to * its non-overridden methods for a specific type. This would correspond to
* |[ MyClass::method(...) ]| in C++. * ``MyClass::method(...)`` in C++.
* *
* The first example of such a QOM method was #CPUClass.reset, * The first example of such a QOM method was #CPUClass.reset,
* another example is #DeviceClass.realize. * another example is #DeviceClass.realize.