Fix comment about Party type in DAML-LF Engine (#3496)

This commit is contained in:
Martin Huschenbett 2019-11-17 13:20:42 +01:00 committed by mergify[bot]
parent 4bd98b6cbc
commit 3f2f69224c

View File

@ -150,8 +150,8 @@ object Ref {
type ModuleName = DottedName
val ModuleName = DottedName
/** Party are non empty US-ASCII strings built with letters, digits, space, minus and,
underscore. We use them to represent [PackageId]s and [Party] literals. In this way, we avoid
/** Party identifiers are non-empty US-ASCII strings built from letters, digits, space, colon, minus and,
underscore. We use them to represent [Party] literals. In this way, we avoid
empty identifiers, escaping problems, and other similar pitfalls.
*/
val Party = ConcatenableMatchingStringModule(":-_ ".contains(_))