From 2180ded91d3af0a09f321f83cd2a4598b6366029 Mon Sep 17 00:00:00 2001 From: Michael Dyck Date: Thu, 25 Jan 2018 18:38:17 -0500 Subject: [PATCH] Editorial: avoid reusing/overwriting metavariable _p_ ... in UnicodeMatchProperty. --- spec.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec.html b/spec.html index b7a890e76e7..f0b7f9b6ead 100644 --- a/spec.html +++ b/spec.html @@ -30383,8 +30383,8 @@

Runtime Semantics: UnicodeMatchProperty ( _p_ )

The abstract operation UnicodeMatchProperty takes a parameter _p_ that is a List of Unicode code points and performs the following steps:

1. Assert: _p_ is a List of Unicode code points that is identical to a List of Unicode code points that is a Unicode property name or property alias listed in the “Property name and aliases” column of or . - 1. Let _p_ be the canonical property name of _p_ as given in the “Canonical property name” column of the corresponding row. - 1. Return the List of Unicode code points of _p_. + 1. Let _c_ be the canonical property name of _p_ as given in the “Canonical property name” column of the corresponding row. + 1. Return the List of Unicode code points of _c_.

Implementations must support the Unicode property names and aliases listed in and . To ensure interoperability, implementations must not support any other property names or aliases.