Skip to content

Commit

Permalink
Minor Correction to Dev Docs. (#3217)
Browse files Browse the repository at this point in the history
The Developer Documentation had the two lines below which needed change.

```bash
git clone git@github.com:quantumlib/cirq.git
cd cirq
```

and 

```bash
git clone git@github.com:USERNAME/cirq.git
cd cirq
```
The directory name after cloning is ```Cirq``` and not ```cirq```. Changed the casing to match the directory name.
  • Loading branch information
abhik-99 committed Aug 14, 2020
1 parent d244bf7 commit 72c2a9f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/dev/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The simplest way to get a local copy of cirq that you can edit is by cloning Cir

```bash
git clone git@github.com:quantumlib/cirq.git
cd cirq
cd Cirq
```

To do your development in a Docker image, you can build one with Cirq/dev_tools/Dockerfile or pull an existing image:
Expand All @@ -35,7 +35,7 @@ your github id.
where you would like to store your local copy of the code, and `cd` into the newly created directory.
```bash
git clone git@github.com:USERNAME/cirq.git
cd cirq
cd Cirq
```
(Alternatively, you can clone the repository using the URL provided
on your repo page under the green "Clone or Download" button)
Expand Down

0 comments on commit 72c2a9f

Please sign in to comment.