Skip to content

Commit

Permalink
Fix: update Quil-T docs to use get_calibration_program() name (#1389)
Browse files Browse the repository at this point in the history
* Fix: update Quil-T docs to use `get_calibration_program()` name

* No code: update CHANGELOG.md
  • Loading branch information
notmgsk committed Oct 12, 2021
1 parent f9f3ff8 commit 2d11e3e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Changelog
### Bugfixes

- Allow `np.ndarray` when writing QAM memory. Disallow non-integer and non-float types.
- Fix typo where `qc.compiler.calibration_program` should be `qc.compiler.get_calibration_program()`.

[v3.0.0](https://github.com/rigetti/pyquil/releases/tag/v3.0.0)
------------------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion docs/source/quilt_getting_started.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
"metadata": {},
"outputs": [],
"source": [
"cals = qc.compiler.calibration_program"
"cals = qc.compiler.get_calibration_program()"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/source/quilt_parametric.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"metadata": {},
"outputs": [],
"source": [
"cals = qc.compiler.calibration_program"
"cals = qc.compiler.get_calibration_program()"
]
},
{
Expand Down

0 comments on commit 2d11e3e

Please sign in to comment.