From 6d292b1bf247c6585fb9ff51a123277d799ae6fd Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Fri, 16 Jul 2021 14:51:27 -0400 Subject: [PATCH] small tweaks --- python/lammps/pylammps.py | 8 ++++---- src/utils.h | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/python/lammps/pylammps.py b/python/lammps/pylammps.py index f9bdd1720a..a89791a02e 100644 --- a/python/lammps/pylammps.py +++ b/python/lammps/pylammps.py @@ -240,7 +240,8 @@ class Atom2D(Atom): @property def position(self): - """ + """Access to coordinates of an atom + :getter: Return position of atom :setter: Set position of atom :type: tuple (float, float) @@ -255,7 +256,7 @@ class Atom2D(Atom): @property def velocity(self): - """ + """Access to velocity of an atom :getter: Return velocity of atom :setter: Set velocity of atom :type: tuple (float, float) @@ -270,8 +271,7 @@ class Atom2D(Atom): @property def force(self): - """ - Return the total force acting on the atom + """Access to force of an atom :type: tuple (float, float) """ diff --git a/src/utils.h b/src/utils.h index 276ae0a315..7df9368b4d 100644 --- a/src/utils.h +++ b/src/utils.h @@ -62,7 +62,7 @@ namespace utils { * * \param lmp pointer to LAMMPS class instance * \param format format string of message to be printed - * \param ... arguments to format string */ + * \param args arguments to format string */ template void logmesg(LAMMPS *lmp, const S &format, Args &&...args) {