Skip to content

Commit 8c7db22

Browse files
authored
Update using.md (#140)
1 parent 2cd8b96 commit 8c7db22

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/user/using.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -176,10 +176,10 @@ Intermediate quantities are **not** saved in the class.
176176
After calling the `kernel()` or `run()` method, results will be generated and
177177
saved as attributes of the object. For example,
178178
```python
179-
from pyscf import gto, scf, ccsd
179+
from pyscf import gto, scf, cc
180180
mol = gto.M(atom='H 0 0 0; H 0 0 1.1', basis='ccpvtz')
181181
mf = scf.RHF(mol).run()
182-
mycc = ccsd.CCSD(mf).run()
182+
mycc = cc.CCSD(mf).run()
183183
print(mycc.e_tot)
184184
print(mycc.e_corr)
185185
print(mycc.t1.shape)

0 commit comments

Comments
 (0)