From 7f63bce45ed5f0216fd63b18b221dddd8a116d9f Mon Sep 17 00:00:00 2001 From: Juan Martin Enriquez Date: Wed, 4 Oct 2017 23:49:14 -0300 Subject: [PATCH] pushd: fix example description --- pages/common/popd.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pages/common/popd.md b/pages/common/popd.md index 6299ac8da..bd9761b5a 100644 --- a/pages/common/popd.md +++ b/pages/common/popd.md @@ -1,15 +1,15 @@ # Popd -> Removes a directory placed on the directory stack via the pushd shell built-in. +> Remove a directory placed on the directory stack via the pushd shell built-in. - Remove the top directory from the stack and cd to it: `popd` -- Removes the Nth directory (starting from zero to the left from the list printed with dirs): +- Remove the Nth directory (starting from zero to the left from the list printed with dirs): `popd +N` -- Removes the Nth directory (starting from zero to the right from the list printed with dirs): +- Remove the Nth directory (starting from zero to the right from the list printed with dirs): `popd -N`