From eac855343fee8b64f2ab1c4eb8ccddd13386ccb2 Mon Sep 17 00:00:00 2001 From: Karl Hammond Date: Fri, 30 Sep 2022 19:54:58 -0500 Subject: [PATCH] Spacing --- doc/src/Fortran.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/src/Fortran.rst b/doc/src/Fortran.rst index 73e3499565..2d03f135a9 100644 --- a/doc/src/Fortran.rst +++ b/doc/src/Fortran.rst @@ -201,9 +201,9 @@ Below is an example demonstrating some of the possible uses. lmp = lammps() CALL lmp%file('in.sysinit') natoms = lmp%extract_global('natoms') - WRITE(OUTPUT_UNIT,'(A,I0,A)') 'Running a simulation with', natoms, ' atoms' + WRITE(OUTPUT_UNIT,'(A,I0,A)') 'Running a simulation with ', natoms, ' atoms' WRITE(OUTPUT_UNIT,'(I0,A,I0,A,I0,A)') lmp%extract_setting('nlocal'), & - ' local and', lmp%extract_setting('nghost'), ' ghost atoms. ', & + ' local and ', lmp%extract_setting('nghost'), ' ghost atoms. ', & lmp%extract_setting('ntypes'), ' atom types' CALL lmp%command('run 2 post no')