diff --git a/doc/scapy/introduction.rst b/doc/scapy/introduction.rst
index 581c8b34ada79e774a8c9b1c42c2d2e50c22d20a..114c01a2ddb71d5c9ace8c1368b62c8612a2bae3 100644
--- a/doc/scapy/introduction.rst
+++ b/doc/scapy/introduction.rst
@@ -197,7 +197,7 @@ For a quick start, here's an overview of Python's data types:
* ``tuple`` (immutable): ``(1,4,"42")``
* ``list`` (mutable): ``[4,2,"1"]``
-* ``dict` (mutable): ``{ "one":1 , "two":2 }``
+* ``dict`` (mutable): ``{ "one":1 , "two":2 }``
There are no block delimiters in Python. Instead, indentation does matter::