From 2d04193b54bc57c29a229b0930f38dba903906ce Mon Sep 17 00:00:00 2001 From: Eduardo Almeida Date: Fri, 9 Feb 2024 16:55:04 +0000 Subject: [PATCH] doc, wifi: Fix rendering of RST code blocks --- doc/tutorial/source/tracing.rst | 2 +- src/wifi/doc/source/wifi-design.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/tutorial/source/tracing.rst b/doc/tutorial/source/tracing.rst index dfd397eca..fe6ffb6ca 100644 --- a/doc/tutorial/source/tracing.rst +++ b/doc/tutorial/source/tracing.rst @@ -589,7 +589,7 @@ One of the predefined namespaces in the config system is "NodeList" which is a list of all of the nodes in the simulation. Items in the list are referred to by indices into the list, so "/NodeList/7" refers to the eighth Node in the list of nodes created during the simulation -(recall indices start at `0'). This reference is actually a +(recall indices start at '0'). This reference is actually a ``Ptr`` and so is a subclass of an ``ns3::Object``. As described in the Object Model section of the |ns3| Manual, we make diff --git a/src/wifi/doc/source/wifi-design.rst b/src/wifi/doc/source/wifi-design.rst index be43a2f02..2ca455f8c 100644 --- a/src/wifi/doc/source/wifi-design.rst +++ b/src/wifi/doc/source/wifi-design.rst @@ -1516,7 +1516,7 @@ Depending on your goal, the common tasks are (in no particular order): ``frame-exchange-manager.*`` or its subclasses to accomplish this. Handling of control frames is performed in ``FrameExchangeManager::ReceiveMpdu``. * MAC high modification. For example, handling new management frames (think beacon/probe), - beacon/probe generation. Users usually make changes to ``wifi-mac.*``,``sta-wifi-mac.*``, ``ap-wifi-mac.*``, or ``adhoc-wifi-mac.*`` to accomplish this. + beacon/probe generation. Users usually make changes to ``wifi-mac.*``, ``sta-wifi-mac.*``, ``ap-wifi-mac.*``, or ``adhoc-wifi-mac.*`` to accomplish this. * Wi-Fi queue management. The files ``txop.*`` and ``qos-txop.*`` are of interest for this task. * Channel access management. Users should modify the files ``channel-access-manager.*``, which grant access to ``Txop`` and ``QosTxop``.