From 8592dba7973218fe5970e3cc02d59efd93bb5f63 Mon Sep 17 00:00:00 2001 From: Schuyler Eldridge Date: Thu, 12 Sep 2019 13:27:09 -0400 Subject: Add space, s/Github/GitHub/ in DontTouchException (#1177) Adds a space to correct in an exception message. Corrects capitalization in Github to it's official name (GitHub) and adds a link to file an issue. Signed-off-by: Schuyler Eldridge --- src/main/scala/firrtl/transforms/OptimizationAnnotations.scala | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/main/scala/firrtl/transforms/OptimizationAnnotations.scala b/src/main/scala/firrtl/transforms/OptimizationAnnotations.scala index 257dbf3a..b0cf2f02 100644 --- a/src/main/scala/firrtl/transforms/OptimizationAnnotations.scala +++ b/src/main/scala/firrtl/transforms/OptimizationAnnotations.scala @@ -19,9 +19,9 @@ case class DontTouchAnnotation(target: ReferenceTarget) extends SingleTargetAnno object DontTouchAnnotation { class DontTouchNotFoundException(module: String, component: String) extends PassException( - s"Target marked dontTouch ($module.$component) not found!\n" + - "It was probably accidentally deleted. Please check that your custom transforms are not" + - "responsible and then file an issue on Github." + s"""|Target marked dontTouch ($module.$component) not found! + |It was probably accidentally deleted. Please check that your custom transforms are not responsible and then + |file an issue on GitHub: https://github.com/freechipsproject/firrtl/issues/new""".stripMargin ) def errorNotFound(module: String, component: String) = -- cgit v1.2.3