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 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." ) )