From ed5d971f0122dc3a7ff4cb7915068ea185564a9b Mon Sep 17 00:00:00 2001 From: Zachary Zollman <85812228+zacharyzollman@users.noreply.github.com> Date: Sun, 19 Sep 2021 20:10:44 -0700 Subject: [PATCH] add backticks to README.md specifically to the first reference to `y` in the section about right joins --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b5b820c..08ab316 100644 --- a/README.md +++ b/README.md @@ -168,7 +168,7 @@ left_join(x, y_extra, by = "id") ### Right Join -> All rows from y, and all columns from `x` and `y`. Rows in `y` with no +> All rows from `y`, and all columns from `x` and `y`. Rows in `y` with no > match in `x` will have `NA` values in the new columns. ![](images/right-join.gif)