From 304e4cc9fbcb115838f09832de79bfc13f0380e2 Mon Sep 17 00:00:00 2001 From: Ram Thiru Date: Thu, 26 Sep 2019 09:17:02 -0700 Subject: [PATCH 1/2] Update CONTRIBUTING.md Fixing typo in clone command --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index b327ce96e1c..907a3b29c67 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -37,7 +37,7 @@ pull requests (PRs). To create a new PR, fork the project in GitHub and clone the upstream repo: ```sh -$ git clone https://https://github.com/open-telemetry/opentelemetry-python.git +$ git clone https://github.com/open-telemetry/opentelemetry-python.git ``` Add your fork as an origin: @@ -50,7 +50,7 @@ Run tests: ```sh # make sure you have all supported versions of Python installed -$ pip install tox # only first time. +$ pip install tox # only first time. $ tox # execute in the root of the repository ``` From d7f6e41692e7761e38f7e38a5420ace6847b088d Mon Sep 17 00:00:00 2001 From: Chris Kleinknecht Date: Fri, 27 Sep 2019 14:46:39 -0700 Subject: [PATCH 2/2] Revert spacing --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 907a3b29c67..1512dfe7023 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -50,7 +50,7 @@ Run tests: ```sh # make sure you have all supported versions of Python installed -$ pip install tox # only first time. +$ pip install tox # only first time. $ tox # execute in the root of the repository ```