Skip to content

Commit

Permalink
Merge pull request #175 from dstrain115/historgram
Browse files Browse the repository at this point in the history
Fix common typos.
  • Loading branch information
dstrain115 authored Jan 9, 2024
2 parents eaa8963 + d8337cc commit 7141896
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/unitary/getting_started.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -582,7 +582,7 @@
"print(\"Histogram of square c2:\")\n",
"print(game_board.get_histogram([board[\"c2\"]]))\n",
"\n",
"print(\"Historgram of square c2 and e2:\")\n",
"print(\"Histogram of square c2 and e2:\")\n",
"print(game_board.get_histogram([board[\"c2\"]]), game_board.get_histogram([board[\"e2\"]]))"
],
"metadata": {
Expand All @@ -600,7 +600,7 @@
"text": [
"Histogram of square c2:\n",
"[{0: 44, 1: 56}]\n",
"Historgram of square c2 and e2:\n",
"Histogram of square c2 and e2:\n",
"[{0: 46, 1: 54}] [{0: 48, 1: 52}]\n"
]
}
Expand Down
2 changes: 1 addition & 1 deletion docs/unitary/physics_terms.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

If you are already familiar with quantum computing terms, have used cirq, or come from a physics background,
the terms in the Unitary may feel a bit unfamiliar. They are meant to connect quantum concepts to traditional
programming contructs, such as "if/then".
programming constructs, such as "if/then".

The following is a table that connects physics terms to cirq and unitary terms.

Expand Down

0 comments on commit 7141896

Please sign in to comment.