-
Notifications
You must be signed in to change notification settings - Fork 184
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 the comment in intro.py example #1497 #1525
Conversation
CLA Assistant Lite bot All Contributors have signed the CLA. |
I have read the Contributor License Agreement and I hereby accept the Terms. |
This PR needs help with an issue stated in #1530. |
While what you have done is not incorrect, in the issue I created #1497, I meant more along the lines of :
|
@poojarao8 I have changed the comment accordingly, Earlier I referred to the comment mention in other files while intalising. Made relevant changes in the above commit. Also it is showing 'the dev environment build pending for approval'. |
Command Bot: Processing... |
Command Bot: Processing... |
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.
Thanks @Gaurang-Belekar!
Description
Fixed the comment in intro.py example,
Issue #1497
# Next, we can allocate qubits to the kernel via `qalloc(qubit_count)`.
# An empty call to `qalloc` will return a single qubit.
qubit = cudaq.qubit()
To
# Allocates qubit to |0> state
qubit = cudaq.qubit()
Fixes #1497