fix(portproxy): Fixed typographical errors in comments within PortProxy class.

This commit is contained in:
2025-02-27 21:25:03 +00:00
parent f336f25535
commit 1cb6302750
3 changed files with 8 additions and 3 deletions

View File

@ -1,6 +1,6 @@
import * as plugins from './plugins.js';
/** Domain configuration with perdomain allowed port ranges */
/** Domain configuration with per-domain allowed port ranges */
export interface IDomainConfig {
domains: string[]; // Glob patterns for domain(s)
allowedIPs: string[]; // Glob patterns for allowed IPs
@ -413,7 +413,7 @@ export class PortProxy {
listeningPorts.add(port);
}
}
// Also ensure the default fromPort is listened to if it isnt already in the ranges.
// Also ensure the default fromPort is listened to if it isn't already in the ranges.
listeningPorts.add(this.settings.fromPort);
} else {
listeningPorts.add(this.settings.fromPort);