There was an error while loading. Please reload this page.
1 parent c5581af commit 10b3783Copy full SHA for 10b3783
README.md
@@ -44,14 +44,14 @@ To get the name of a function:
44
import com.github.dwickern.macros.NameOf._
45
46
def startCalculation(value: Int): Unit = {
47
- println(s"Entered ${nameOf(startCalculation _)}")
+ println("Entered " + nameOf(startCalculation _))
48
}
49
```
50
``` mdoc:nest
51
// compiles to:
52
53
54
- println(s"Entered startCalculation")
+ println("Entered startCalculation")
55
56
57
0 commit comments