From 7bb4731490638e5434e7f15d5f004d8096b39398 Mon Sep 17 00:00:00 2001 From: eni <129673786+enitimeago@users.noreply.github.com> Date: Sat, 3 Feb 2024 23:07:03 +0900 Subject: [PATCH] Update SEQUENCING.md (#150) --- design-docs/SEQUENCING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/design-docs/SEQUENCING.md b/design-docs/SEQUENCING.md index 6d9d9be..77e426d 100644 --- a/design-docs/SEQUENCING.md +++ b/design-docs/SEQUENCING.md @@ -86,7 +86,7 @@ All passes and phases are (typically singleton) objects. A typical pass might lo ```csharp class MyPass : Pass { - public override void Execute(BuildContext context) { + protected override void Execute(BuildContext context) { // Do stuff } }