Fix a typo in a comment

Co-authored-by: Ian Edington <IanEdington@gmail.com>
This commit is contained in:
Michael Lumish 2021-03-24 09:35:27 -07:00 committed by GitHub
parent 995540ceec
commit 5cf93cf5fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ function getImportLine(dependency: Protobuf.Type | Protobuf.Enum | Protobuf.Serv
const filePath = from === undefined ? './' + getImportPath(dependency) : getRelativeImportPath(from, dependency);
const typeInterfaceName = getTypeInterfaceName(dependency);
let importedTypes: string;
/* If the dependenc is defined within a message, it will be generated in that
/* If the dependency is defined within a message, it will be generated in that
* message's file and exported using its typeInterfaceName. */
if (dependency.parent instanceof Protobuf.Type) {
if (dependency instanceof Protobuf.Type) {