-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Fix typos in XEB #7254
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix typos in XEB #7254
Conversation
Cross-Entropy Benchmarking should be hyphenated; also, for consistency, it should be either always capitalized or never. Since more places in the docs capitalize it, this commit changes all of them to follow suit.
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #7254 +/- ##
=======================================
Coverage 98.64% 98.64%
=======================================
Files 1106 1106
Lines 95990 95990
=======================================
+ Hits 94691 94692 +1
+ Misses 1299 1298 -1 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Can you please tuck in an extra one-character fix?
(On mac pbpaste | git apply
should work after copying the patch)
diff --git a/docs/transform/custom_transformers.ipynb b/docs/transform/custom_transformers.ipynb
index ab4962f8..e64f4258 100644
--- a/docs/transform/custom_transformers.ipynb
+++ b/docs/transform/custom_transformers.ipynb
@@ -167,3 +167,3 @@
"### `cirq.TransformerLogger` and support for automated logging\n",
- "The `cirq.TransformerLogger` class is used to log the actions of a transformer on an input circuit. `@cirq.transformer` decorator automatically adds support for logging the initial and final circuits for each transfomer step. "
+ "The `cirq.TransformerLogger` class is used to log the actions of a transformer on an input circuit. `@cirq.transformer` decorator automatically adds support for logging the initial and final circuits for each transformer step. "
]
diff --git a/docs/transform/routing_transformer.ipynb b/docs/transform/routing_transformer.ipynb
index 8f1c5723..415df0ef 100644
--- a/docs/transform/routing_transformer.ipynb
+++ b/docs/transform/routing_transformer.ipynb
@@ -98,3 +98,3 @@
"source": [
- "## Routing as a `@cirq.transfomer`"
+ "## Routing as a `@cirq.transformer`"
]
* Fix typos in XEB Cross-Entropy Benchmarking should be hyphenated; also, for consistency, it should be either always capitalized or never. Since more places in the docs capitalize it, this commit changes all of them to follow suit. * Missed another case of XEB hyphenation
Cross-Entropy Benchmarking should be hyphenated; also, for consistency, it should be either always capitalized or never. Since more places in the docs capitalize it, this commit changes all of them to follow suit.