From 3b8cf616ae3aaacf7b2d6241764e99322b3c7060 Mon Sep 17 00:00:00 2001 From: Trevor McKay Date: Fri, 30 Jan 2026 13:07:02 -0800 Subject: [PATCH] fix typo in Settings --- src/main/scala/chisel3/simulator/Settings.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/scala/chisel3/simulator/Settings.scala b/src/main/scala/chisel3/simulator/Settings.scala index 885b9b1fb4e..0a4c814f7f9 100644 --- a/src/main/scala/chisel3/simulator/Settings.scala +++ b/src/main/scala/chisel3/simulator/Settings.scala @@ -126,7 +126,7 @@ final class Settings[A <: RawModule] private[simulator] ( */ object Settings { - /** Retun a default [[Settings]] for a [[Module]]. Macros will be set to + /** Return a default [[Settings]] for a [[Module]]. Macros will be set to * disable [[chisel3.assert]]-style assertions using the [[Module]]'s reset * port. * @@ -153,7 +153,7 @@ object Settings { randomization = Randomization.random ) - /** Retun a default [[Settings]] for a [[RawModule]]. + /** Return a default [[Settings]] for a [[RawModule]]. * * This differs from [[default]] in that it cannot set default values for * macros because a [[RawModule]] has no defined reset port. You will likely