From 6d67c2e0663d32142aea3790bcadaf6f8a781d95 Mon Sep 17 00:00:00 2001 From: Sagar Kaushik Date: Thu, 25 Nov 2021 20:28:02 +0530 Subject: [PATCH] Just fixing a small typo I noticed If you're only exposure to using... -> If your only exposure to using... --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 38f0280a32..4586f6f5e5 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -81,7 +81,7 @@ Following that we'll tell you about how you can test your changes locally and th # If you're using shells other than bash you'll need to use pip install -e ".[test,examples,doc]" ``` - * If you're only exposure to using pip is `pip install package_name` then this might be a bit confusing. + * If your only exposure to using pip is `pip install package_name` then this might be a bit confusing. * If we type `pip install -e .` (notice the 'dot'), this tells `pip` to install a package located here, in this directory, `.`. The `-e` flag indicates that it should be editable, meaning you will not have to run `pip install .` every time you make a change and want to try it. * Finally the `[test,examples,doc]` tells `pip` that there's some extra optional dependencies that we want to install.