You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When attempting hyperlinking on the following route file with the corresponding controllers:
GET / @controllers.Application.index
class Application extends Controller {
def index = Action { ... }
}
object Application extends Controller {
def index = Action { ... }
}
hyperlinking will bring you to the object instead of the class. It would be nice if hyperlinking was smarter and accounted for the fact that the leading @ signifies a class.
The text was updated successfully, but these errors were encountered:
When attempting hyperlinking on the following route file with the corresponding controllers:
hyperlinking will bring you to the object instead of the class. It would be nice if hyperlinking was smarter and accounted for the fact that the leading
@
signifies a class.The text was updated successfully, but these errors were encountered: