From 2eed658d85e46583fb198c2b2e59f27cb69a4861 Mon Sep 17 00:00:00 2001 From: Germain Clavier Date: Thu, 12 Jun 2025 15:57:59 +0200 Subject: [PATCH] Corrected what I think is a typo There is no way to evaluate a variable with iv_ prefix. --- doc/src/variable.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/src/variable.rst b/doc/src/variable.rst index 278beec192..691ee811d2 100644 --- a/doc/src/variable.rst +++ b/doc/src/variable.rst @@ -1223,7 +1223,7 @@ input script: .. code-block:: LAMMPS variable foo python truncate - python truncate return v_foo input 1 iv_arg format fi here """ + python truncate return v_foo input 1 v_arg format fi here """ def truncate(x): return int(x) """