summaryrefslogtreecommitdiff
path: root/chiselFrontend/src/main
diff options
context:
space:
mode:
authoredwardcwang2018-04-26 14:44:27 -0700
committeredwardcwang2018-04-26 14:59:30 -0700
commit45112f0293921d272ac42e77051847095bbe5ba0 (patch)
tree26499ad24449fd68d1151eb77d90dcb4314bf4d2 /chiselFrontend/src/main
parentb079cb037273a04343d24e27e11f4d419e7bdef1 (diff)
Minor edits to wording
Diffstat (limited to 'chiselFrontend/src/main')
-rw-r--r--chiselFrontend/src/main/scala/chisel3/internal/Error.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/chiselFrontend/src/main/scala/chisel3/internal/Error.scala b/chiselFrontend/src/main/scala/chisel3/internal/Error.scala
index 7d209219..2346181a 100644
--- a/chiselFrontend/src/main/scala/chisel3/internal/Error.scala
+++ b/chiselFrontend/src/main/scala/chisel3/internal/Error.scala
@@ -53,8 +53,8 @@ private[chisel3] class ErrorLog {
if (!deprecations.isEmpty) {
println(s"$warnTag ${Console.YELLOW}There were ${deprecations.size} deprecated function(s) used." +
- s" These may stop compiling in a future release, you are encouraged to fix these issues.${Console.RESET}")
- println(s"$warnTag Line numbers for deprecations reported by Chisel may be inaccurate, enable scalac compiler deprecation warnings by either:")
+ s" These may stop compiling in a future release - you are encouraged to fix these issues.${Console.RESET}")
+ println(s"$warnTag Line numbers for deprecations reported by Chisel may be inaccurate; enable scalac compiler deprecation warnings via either of the following methods:")
println(s"$warnTag In the sbt interactive console, enter:")
println(s"""$warnTag set scalacOptions in ThisBuild ++= Seq("-unchecked", "-deprecation")""")
println(s"$warnTag or, in your build.sbt, add the line:")