diff options
| author | Schuyler Eldridge | 2019-09-12 13:27:09 -0400 |
|---|---|---|
| committer | mergify[bot] | 2019-09-12 17:27:09 +0000 |
| commit | 8592dba7973218fe5970e3cc02d59efd93bb5f63 (patch) | |
| tree | 7665f3f4de71eb46e11566eae3a765d3fc333451 /src | |
| parent | 750ee776978fa1fdcfa64aa04f218b0c70c3e85e (diff) | |
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 <schuyler.eldridge@ibm.com>
Diffstat (limited to 'src')
| -rw-r--r-- | src/main/scala/firrtl/transforms/OptimizationAnnotations.scala | 6 |
1 files changed, 3 insertions, 3 deletions
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) = |
