From bd7d989921cfcc2852db992d28a062e921d10da2 Mon Sep 17 00:00:00 2001 From: "T.Tian" Date: Sat, 23 Nov 2024 00:03:26 +0800 Subject: [PATCH] typo in gpaw calc dir in basic usage --- doc/basic_usage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/basic_usage.md b/doc/basic_usage.md index a16b6f28..39ff409f 100644 --- a/doc/basic_usage.md +++ b/doc/basic_usage.md @@ -196,7 +196,7 @@ Example 2: GPAW (another real-space DFT code) vs SPARC ```python # Using GPAW from gpaw import GPAW -calc = GPAW(xc="PBE", kpts=(9, 9, 9), h=0.25, directory="vasp-calc", convergence={"energy": 1.e-4}) +calc = GPAW(xc="PBE", kpts=(9, 9, 9), h=0.25, directory="gpaw-calc", convergence={"energy": 1.e-4}) ``` vs ```python