Skip to content

Commit ba95612

Browse files
Fixed a sphinx error " ERROR: Content block expected for the "note" directive; none found."
Signed-off-by: David Rebbe <drebbe@intrepidcs.com>
1 parent f62ca92 commit ba95612

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

include/methods.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,10 +86,10 @@ PyObject* meth_get_device_status(PyObject* self, PyObject* args);
8686

8787
#define _EZ_ICS_STRUCT_METHOD(name, icsname, meth, flags, doc) \
8888
{name, (PyCFunction)meth, flags, doc}, \
89-
{icsname, (PyCFunction)meth, flags, "\n.. note::\n\tIdentical to PEP8 compliant :func:`" MODULE_NAME "." name "` method.\n\n"}
89+
{icsname, (PyCFunction)meth, flags, "\n.. note:: Compatibility Function\n\tIdentical to PEP8 compliant :func:`" MODULE_NAME "." name "` method.\n\n"}
9090

9191
#define _EZ_ICS_STRUCT_METHOD_MULTIPLE(name, icsname, meth, flags, doc) \
92-
{icsname, (PyCFunction)meth, flags, "\n.. note::\n\tIdentical to PEP8 compliant :func:`" MODULE_NAME "." name "` method.\n\n"}
92+
{icsname, (PyCFunction)meth, flags, "\n.. note:: Compatibility Function\n\tIdentical to PEP8 compliant :func:`" MODULE_NAME "." name "` method.\n\n"}
9393

9494
#define _DOC_FIND_DEVICES \
9595
MODULE_NAME".find_devices(device_type="MODULE_NAME".NEODEVICE_ALL)\n" \

0 commit comments

Comments
 (0)