Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Caesar_cipher code example showed right shift, not left.
A left shift of 5 for the string "What a string" should yield the value "Rcvo v nomdib!". The output in the example shows a right shift of 5. At the very least, the example from Wikipedia shows a left shift of three, "D->A" and "E->B" while the code example shows a right shift. The examples should be consistent on the page.
- Loading branch information