From b0c43877fa4c41d266da5120d5cf7da71843c497 Mon Sep 17 00:00:00 2001 From: Thomas Madlener Date: Tue, 5 Nov 2024 10:43:30 +0100 Subject: [PATCH] Fix grammar and typos Co-authored-by: Andre Sailer --- doc/datamodel_syntax.md | 2 +- python/podio_gen/julia_generator.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/datamodel_syntax.md b/doc/datamodel_syntax.md index c6f69ee5f..8f9615c1c 100644 --- a/doc/datamodel_syntax.md +++ b/doc/datamodel_syntax.md @@ -157,7 +157,7 @@ between objects, just like normal `datatypes`. ## Definition of links Podio offers a templated `Link` class ([see here for more details](links.md)) -that allows to link two arbitrary datatypes without having to introduce a +that allows one to link two arbitrary datatypes without having to introduce a `OneToOneRelation` or `OneToManyRelation` inside the corresponding datatypes. In order to keep the full definition of a datamodel in the YAML file it is possible to declare `links` in the YAML file: diff --git a/python/podio_gen/julia_generator.py b/python/podio_gen/julia_generator.py index d45b4ff86..689a5623c 100644 --- a/python/podio_gen/julia_generator.py +++ b/python/podio_gen/julia_generator.py @@ -75,7 +75,7 @@ def do_process_interface(self, _, __): return None def do_process_link(self, _, __): - """Julia does not support interface types yet, so this does nothing""" + """Julia does not support link types yet, so this does nothing""" return None def get_upstream_name(self):