From c2ef214cd0880136f61e74b3da05073bd936583e Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Mon, 6 Jan 2025 20:27:14 -0800 Subject: [PATCH] fix typo in SourceInfoTransform.scala (#4594) (#4596) (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 7f6770f332..eb5e3467ba 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. *