From 7e4109571833c0e8a3c10539e1e2e75e62935835 Mon Sep 17 00:00:00 2001
From: Dirk Loss <mail@dirk-loss.de>
Date: Sun, 15 Mar 2009 22:32:06 +0100
Subject: [PATCH] Fixed typos and layout

---
 doc/scapy/advanced_usage.rst | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/doc/scapy/advanced_usage.rst b/doc/scapy/advanced_usage.rst
index c15f4622..5b4d0b9b 100644
--- a/doc/scapy/advanced_usage.rst
+++ b/doc/scapy/advanced_usage.rst
@@ -689,7 +689,7 @@ States are methods decorated by the result of the ``ATMT.state`` function. It ca
             pass
     
         @ATMT.state()
-        def SOME_STATE(self)
+        def SOME_STATE(self):
             pass
     
         @ATMT.state(final=1)
@@ -782,9 +782,9 @@ The two possible outputs are::
 Methods to overload
 ^^^^^^^^^^^^^^^^^^^
 
-Two methods are hooks to be overloaded.
+Two methods are hooks to be overloaded:
 
-The ``parse_args()`` method is called with arguments given at ``__init__()`` and ``run()``. Use that to parametrize the behaviour of your automaton.
+* The ``parse_args()`` method is called with arguments given at ``__init__()`` and ``run()``. Use that to parametrize the behaviour of your automaton.
 
-The ``master_filter()`` method is called each time a packet is sniffed and decides if it is interesting for the automaton. When working on a specific protocol, this is where you will ensure the packet belongs to the connection you are being part of, so that you do not need to make all the sanity checks in each transition.
+* The ``master_filter()`` method is called each time a packet is sniffed and decides if it is interesting for the automaton. When working on a specific protocol, this is where you will ensure the packet belongs to the connection you are being part of, so that you do not need to make all the sanity checks in each transition.
 
-- 
GitLab