diff --git a/doc/source/notebooks/masking_data_with_gatefilters.ipynb b/doc/source/notebooks/masking_data_with_gatefilters.ipynb index 79a86d41b0..c9a1335ea5 100644 --- a/doc/source/notebooks/masking_data_with_gatefilters.ipynb +++ b/doc/source/notebooks/masking_data_with_gatefilters.ipynb @@ -135,7 +135,7 @@ "# The below example shows how you can use a gatefilter to exclude values where gate_id is\n", "# equal to a certain value. (You can exclude values based on conditions from multiple\n", "# fields. In this example, we are excluding regions identified as second trip echoes\n", - "# (gate_id = 0), nonhydrometeors (gate_id = 1), and clutter (gate_id = 2).\n", + "# (gate_id = 0), nonhydrometeors (gate_id = 3), and clutter (gate_id = 5).\n", "gatefilter.exclude_equal(\"gate_id\", 0)\n", "gatefilter.exclude_equal(\"gate_id\", 3)\n", "gatefilter.exclude_equal(\"gate_id\", 5)"