Skip to content
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 docstring typo in to_qasm #836

Merged
merged 3 commits into from
Sep 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc/python_api_reference_vDev.md
Original file line number Diff line number Diff line change
Expand Up @@ -3339,8 +3339,8 @@ def to_qasm(
This should be set to 2 or to 3.

Differences between the versions are:
- Support for operations on classical bits operations (only version
3). This means DETECTOR and OBSERVABLE_INCLUDE only work with
- Support for operations on classical bits (only version 3).
This means DETECTOR and OBSERVABLE_INCLUDE only work with
version 3.
- Support for feedback operations (only version 3).
- Support for subroutines (only version 3). Without subroutines,
Expand Down
4 changes: 2 additions & 2 deletions doc/stim.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -2573,8 +2573,8 @@ class Circuit:
This should be set to 2 or to 3.

Differences between the versions are:
- Support for operations on classical bits operations (only version
3). This means DETECTOR and OBSERVABLE_INCLUDE only work with
- Support for operations on classical bits (only version 3).
This means DETECTOR and OBSERVABLE_INCLUDE only work with
version 3.
- Support for feedback operations (only version 3).
- Support for subroutines (only version 3). Without subroutines,
Expand Down
4 changes: 2 additions & 2 deletions glue/python/src/stim/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -2573,8 +2573,8 @@ class Circuit:
This should be set to 2 or to 3.

Differences between the versions are:
- Support for operations on classical bits operations (only version
3). This means DETECTOR and OBSERVABLE_INCLUDE only work with
- Support for operations on classical bits (only version 3).
This means DETECTOR and OBSERVABLE_INCLUDE only work with
version 3.
- Support for feedback operations (only version 3).
- Support for subroutines (only version 3). Without subroutines,
Expand Down
4 changes: 2 additions & 2 deletions src/stim/circuit/circuit.pybind.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1663,8 +1663,8 @@ void stim_pybind::pybind_circuit_methods(pybind11::module &, pybind11::class_<Ci
This should be set to 2 or to 3.

Differences between the versions are:
- Support for operations on classical bits operations (only version
3). This means DETECTOR and OBSERVABLE_INCLUDE only work with
- Support for operations on classical bits (only version 3).
This means DETECTOR and OBSERVABLE_INCLUDE only work with
version 3.
- Support for feedback operations (only version 3).
- Support for subroutines (only version 3). Without subroutines,
Expand Down
Loading