core: make comment javadoc style

This commit is contained in:
Andras Slemmer 2016-06-16 18:31:23 +01:00
parent 9ec1ec786f
commit eaf37e2e7a

View File

@ -139,10 +139,11 @@ abstract class AbstractTransactionForTest {
} }
} }
// If you jumped here from a compiler error make sure the last line of your test tests for a transaction accept or fail /** If you jumped here from a compiler error make sure the last line of your test tests for a transaction accept or fail
// This is a dummy type that can only be instantiated by functions in this module. This way we can ensure that all tests * This is a dummy type that can only be instantiated by functions in this module. This way we can ensure that all tests
// will have as the last line either an accept or a failure test. The name is deliberately long to help make sense of * will have as the last line either an accept or a failure test. The name is deliberately long to help make sense of
// the triggered diagnostic * the triggered diagnostic
*/
sealed class LastLineShouldTestForAcceptOrFailure { sealed class LastLineShouldTestForAcceptOrFailure {
internal object Token: LastLineShouldTestForAcceptOrFailure() internal object Token: LastLineShouldTestForAcceptOrFailure()
} }