diff --git a/doc/src/Library_objects.rst b/doc/src/Library_objects.rst index 89056a5db0..53edfce9e6 100644 --- a/doc/src/Library_objects.rst +++ b/doc/src/Library_objects.rst @@ -1,5 +1,5 @@ -Compute, fixes, variables -========================= +Computes, fixes, variables +========================== This section documents accessing or modifying data stored by computes, fixes, or variables in LAMMPS using the following functions: diff --git a/python/lammps/core.py b/python/lammps/core.py index accf20b5d1..3eb74cb550 100644 --- a/python/lammps/core.py +++ b/python/lammps/core.py @@ -103,7 +103,7 @@ class command_wrapper(object): This method is where the Python 'magic' happens. If a method is not defined by the class command_wrapper, it assumes it is a LAMMPS command. It takes all the arguments, concatinates them to a single string, and executes it using - :py:meth:`lammps.command()`. + :py:meth:`lammps.command`. Starting with Python 3.6 it also supports keyword arguments. key=value is transformed into 'key value'. Note, since these have come last in the diff --git a/python/lammps/ipython/wrapper.py b/python/lammps/ipython/wrapper.py index 729c0d62bf..6f6669f55a 100644 --- a/python/lammps/ipython/wrapper.py +++ b/python/lammps/ipython/wrapper.py @@ -17,7 +17,7 @@ ################################################################################ class wrapper(object): - """lammps API IPython Wrapper + """ lammps API IPython Wrapper This is a wrapper class that provides additional methods on top of an existing :py:class:`lammps` instance. It provides additional methods