From 3830df78265c3fe4a428495f68f4a0b01ca01390 Mon Sep 17 00:00:00 2001 From: Wouter Deconinck <wdconinc@gmail.com> Date: Mon, 5 Feb 2024 08:27:14 -0600 Subject: [PATCH] fix: typo Co-authored-by: Andre Sailer <andre.philippe.sailer@cern.ch> --- DDG4/python/DDSim/Helper/Action.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DDG4/python/DDSim/Helper/Action.py b/DDG4/python/DDSim/Helper/Action.py index ec6fc8cc6..f87574ebf 100644 --- a/DDG4/python/DDSim/Helper/Action.py +++ b/DDG4/python/DDSim/Helper/Action.py @@ -37,7 +37,7 @@ class Action(ConfigHelper): >>> SIM.action.run = "Geant4TestRunAction" # multiple actions with comma-separated names: >>> SIM.action.event = "Geant4TestEventAction/Action0,Geant4TestEventAction/Action1" - # single actuon by tuple of name and parameter dict: + # single action by tuple of name and parameter dict: >>> SIM.action.track = ( "Geant4TestTrackAction", {"Property_int": 10} ) # single action by dict of name and parameter dict: >>> SIM.action.step = { "name": "Geant4TestStepAction", "parameter": {"Property_int": 10} } -- GitLab