mirror of
https://github.com/servo/servo
synced 2026-05-01 20:07:22 +02:00
Fix trivial typo in variable name (#31143)
This commit is contained in:
@@ -51,9 +51,9 @@ class Configuration:
|
||||
# Mark the descriptors for which only a single nativeType implements
|
||||
# an interface.
|
||||
for descriptor in self.descriptors:
|
||||
intefaceName = descriptor.interface.identifier.name
|
||||
interfaceName = descriptor.interface.identifier.name
|
||||
otherDescriptors = [d for d in self.descriptors
|
||||
if d.interface.identifier.name == intefaceName]
|
||||
if d.interface.identifier.name == interfaceName]
|
||||
descriptor.uniqueImplementation = len(otherDescriptors) == 1
|
||||
|
||||
self.enums = [e for e in parseData if e.isEnum()]
|
||||
|
||||
Reference in New Issue
Block a user