From 9ed83b6aff794f172bc2e9c8bba7467e1317a2c5 Mon Sep 17 00:00:00 2001 From: Sage Walker Date: Fri, 22 Mar 2024 16:41:03 -0700 Subject: [PATCH] sim.core: correct deprecation warning --- amaranth/sim/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amaranth/sim/core.py b/amaranth/sim/core.py index 67003d1..25e5a49 100644 --- a/amaranth/sim/core.py +++ b/amaranth/sim/core.py @@ -88,7 +88,7 @@ class Simulator: yield from process() self._engine.add_coroutine_process(wrapper, default_cmd=None) - @deprecated("The `add_sync_process` method is deprecated per RFC 47. Use `add_process` or `add_testbench` instead.") + @deprecated("The `add_sync_process` method is deprecated per RFC 27. Use `add_process` or `add_testbench` instead.") def add_sync_process(self, process, *, domain="sync"): process = self._check_process(process) def wrapper():