From 3920c66f3b7cfd797b899566648259e58877639f Mon Sep 17 00:00:00 2001 From: kuzikov <52793174+kuzikov@users.noreply.github.com> Date: Wed, 18 Mar 2020 08:09:36 +0600 Subject: [PATCH] Typos fixed. --- subjects/push-swap/push-swap.en.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/push-swap/push-swap.en.md b/subjects/push-swap/push-swap.en.md index 19ccf4d9..1c01a572 100644 --- a/subjects/push-swap/push-swap.en.md +++ b/subjects/push-swap/push-swap.en.md @@ -21,7 +21,7 @@ These are the instructions that you can use to sort the stack : - `ra` rotate stack `a` (shift up all elements of stack `a` by 1, the first element becomes the last one) - `rb` rotate stack `b` - `rr`execute `ra` and `rb` -- `rra` reverse rotate `a` (shift down all elements of stack `a` by 1, the first element becomes the last one) +- `rra` reverse rotate `a` (shift down all elements of stack `a` by 1, the last element becomes the first one) - `rrb` reverse rotate `b` - `rrr` execute `rra` and `rrb`