From 205b95fc1be54ad6bbacdf755df357061a31910f Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Mon, 6 Jan 2025 20:29:39 -0800 Subject: [PATCH] fix typo in SourceInfoTransform.scala (#4594) (#4597) (cherry picked from commit 4177bfaf1adbf0285c51093491df223bc7be20b6) Co-authored-by: qiming chu --- .../scala/chisel3/internal/sourceinfo/SourceInfoTransform.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macros/src/main/scala/chisel3/internal/sourceinfo/SourceInfoTransform.scala b/macros/src/main/scala/chisel3/internal/sourceinfo/SourceInfoTransform.scala index 5e5d45240d9..0fe1dfc3b91 100644 --- a/macros/src/main/scala/chisel3/internal/sourceinfo/SourceInfoTransform.scala +++ b/macros/src/main/scala/chisel3/internal/sourceinfo/SourceInfoTransform.scala @@ -10,7 +10,7 @@ import scala.reflect.macros.blackbox.Context import scala.reflect.macros.whitebox /** Transforms a function call so that it can both provide implicit-style source information and - * have a chained apply call. Without macros, only one is possible, since having a implicit + * have a chained apply call. Without macros, only one is possible, since having an implicit * argument in the definition will cause the compiler to interpret a chained apply as an * explicit implicit argument and give type errors. *