diff --git a/docs/pages/bash_manip/bash_manip-7-sed.md b/docs/pages/bash_manip/bash_manip-7-sed.md
index d3b7582fa1e16eef610991b1910ada71a4f342fb..ff49bf4062f6fd16b0c1de616f0554976d5326f1 100644
--- a/docs/pages/bash_manip/bash_manip-7-sed.md
+++ b/docs/pages/bash_manip/bash_manip-7-sed.md
@@ -73,7 +73,6 @@ sed -n 'line p' file
 |----------|----------| ----------|
 | `sed -n '8p' file` | Print line 8 |
 | `sed -n '8p; 16p' file` | Print lines 8 and 16 |
-| `sed -n '8p; 16p' file` | Print lines 8 and 16 |
 | `sed -n -e '8p' -e '16p' file` | Print lines 8 and 16 |
 | `sed -n '8,16 p' file` | Print lines from 8 to 16 |
 | `sed '8,$ p' file` | Print lines from line 8 to the end of the file |