From a2146d5f63c85cbcf02eac69b8948e95213473af Mon Sep 17 00:00:00 2001 From: "Matthew W. Thompson" Date: Wed, 6 Sep 2023 16:07:42 -0500 Subject: [PATCH] DOC: Fix typos --- docs/releasehistory.md | 4 ++++ openff/interchange/smirnoff/_nonbonded.py | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/releasehistory.md b/docs/releasehistory.md index cb3d69d76..5fb1bf7c2 100644 --- a/docs/releasehistory.md +++ b/docs/releasehistory.md @@ -20,6 +20,10 @@ Please note that all releases prior to a version 1.0.0 are considered pre-releas * #797 `SMIRNOFFElectrostaticsCollection` now applies virtual site charge increments. * #797 Removes `ElectrostaticsCollection.charges_without_virtual_sites`, `FoyerElectrostaticsHandler.charges_without_virtual_sites`, and makes `SMIRNOFFElectrostaticsCollection.charges_without_virtual_sites` private. +### Documentation improvements + +* #802 Fixes some typos in the `vdWHandler` down-conversion warning. + ## 0.3.13 - 2023-08-22 ### New Features diff --git a/openff/interchange/smirnoff/_nonbonded.py b/openff/interchange/smirnoff/_nonbonded.py index c42ad3579..c9fec5d0c 100644 --- a/openff/interchange/smirnoff/_nonbonded.py +++ b/openff/interchange/smirnoff/_nonbonded.py @@ -104,8 +104,8 @@ def _downconvert_vdw_handler(vdw_handler: vdWHandler): elif vdw_handler.version == Version("0.4"): warnings.warn( - "Automatically down-converting BondHandler from version 0.4 to 0.3. In the future, this " - "down-conversion will not happen and verison 0.3 will not be supported.", + "Automatically down-converting vdWHandler from version 0.4 to 0.3. In the future, this " + "down-conversion will not happen and version 0.3 will not be supported.", stacklevel=2, )