From fc01f64dbf52b9b97f3020524afc169d0fe22bd6 Mon Sep 17 00:00:00 2001 From: Ocenka Date: Mon, 4 Aug 2025 18:45:55 +0100 Subject: [PATCH 1/2] Update benchmark_diff.py --- scripts/externalTests/benchmark_diff.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/externalTests/benchmark_diff.py b/scripts/externalTests/benchmark_diff.py index 234f85ac0ea9..bbbd89d00922 100755 --- a/scripts/externalTests/benchmark_diff.py +++ b/scripts/externalTests/benchmark_diff.py @@ -350,7 +350,7 @@ def process_commandline() -> CommandLineOptions: choices=[m.value for m in DiffMode], help=( "Diff mode: " - f"'{DiffMode.IN_PLACE.value}' preserves input JSON structure and replace values with differences; " + f"'{DiffMode.IN_PLACE.value}' preserves input JSON structure and replaces values with differences; " f"'{DiffMode.TABLE.value}' creates a table assuming 3-level project/preset/attribute structure." ) ) From 78303a37911592623ba322da0d0466e92107898a Mon Sep 17 00:00:00 2001 From: Ocenka Date: Mon, 4 Aug 2025 21:01:30 +0100 Subject: [PATCH 2/2] Update inheritance.rst --- docs/contracts/inheritance.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/contracts/inheritance.rst b/docs/contracts/inheritance.rst index 8a2d12afd839..5f2f7a681916 100644 --- a/docs/contracts/inheritance.rst +++ b/docs/contracts/inheritance.rst @@ -229,7 +229,7 @@ The way around this is to use ``super``: If ``Final`` calls a function of ``super``, it does not simply call this function on one of its base contracts. Rather, it calls this function on the next base contract in the final -inheritance graph, so it will call ``Base1.emitEvent()`` (note that +inheritance graph, so it will call ``Base2.emitEvent()`` (note that the final inheritance sequence is -- starting with the most derived contract: Final, Base2, Base1, Emittable, Owned). The actual function that is called when using super is