mirror of
https://github.com/servo/servo.git
synced 2025-08-05 05:30:08 +01:00
Fix trivial typo in variable name (#31143)
This commit is contained in:
parent
23a4a750be
commit
8dcf3dd0b0
1 changed files with 2 additions and 2 deletions
|
@ -51,9 +51,9 @@ class Configuration:
|
||||||
# Mark the descriptors for which only a single nativeType implements
|
# Mark the descriptors for which only a single nativeType implements
|
||||||
# an interface.
|
# an interface.
|
||||||
for descriptor in self.descriptors:
|
for descriptor in self.descriptors:
|
||||||
intefaceName = descriptor.interface.identifier.name
|
interfaceName = descriptor.interface.identifier.name
|
||||||
otherDescriptors = [d for d in self.descriptors
|
otherDescriptors = [d for d in self.descriptors
|
||||||
if d.interface.identifier.name == intefaceName]
|
if d.interface.identifier.name == interfaceName]
|
||||||
descriptor.uniqueImplementation = len(otherDescriptors) == 1
|
descriptor.uniqueImplementation = len(otherDescriptors) == 1
|
||||||
|
|
||||||
self.enums = [e for e in parseData if e.isEnum()]
|
self.enums = [e for e in parseData if e.isEnum()]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue