From bcda9bc7a84a1f735a35889fdbbd5bbcc0a7e4b3 Mon Sep 17 00:00:00 2001 From: John Chapman <John.Chapman@cern.ch> Date: Wed, 4 Jun 2025 14:02:32 +0200 Subject: [PATCH] fix typos --- docs/athena/guidelines/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/athena/guidelines/index.md b/docs/athena/guidelines/index.md index 0f41ee2..1128862 100644 --- a/docs/athena/guidelines/index.md +++ b/docs/athena/guidelines/index.md @@ -13,12 +13,12 @@ These guidelines are intended to complement the [C++ coding guidelines](/coding- ## EDM ### ReadHandleKeys/WriteHandleKeys -- If an Algorithm creates a collection, a `WriteHandle` for this collection should always be used to record this collect to StoreGate. The Algorithm should have a corresponding `WriteHandleKey` configurable property. +- If an Algorithm creates a collection, a `WriteHandle` should always be used to record this collection to StoreGate. The Algorithm should have a corresponding `WriteHandleKey` configurable property. - If an Algorithm reads a collection from StoreGate, a `ReadHandle` should always be used. The Algorithm should have a corresponding `ReadHandleKey` configurable property. !!! warning - Objects written to StoreGate should should not be modified once the corresponding `WriteHandle` has gone out of scope. - In such cases, a copy of the object with the required updates should be made instead. (Exception: See information about "Decorations" for xAOD::Containers below.) + Objects written to StoreGate should not be modified once the corresponding `WriteHandle` has gone out of scope. + In such cases, a copy of the object with the required updates should be made instead. (Exception: See information about "Decorations" for xAOD::Containers below.) ### xAOD Basics -- GitLab