Skip to content

Commit

Permalink
Cleanup small details
Browse files Browse the repository at this point in the history
  • Loading branch information
captbaritone committed Mar 24, 2023
1 parent af1f34e commit 1bd182f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ GraphQL enums can be defined by placing a `@GQLEnum` docblock directly before a:
*/
enum MyEnum {
/** A description of my variant */
OK = "OK"
OK = "OK",
/** A description of my other variant */
ERROR = "ERROR"
}
Expand Down
1 change: 0 additions & 1 deletion src/tests/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import * as path from "path";
import TestRunner from "./TestRunner";
import { buildSchemaResult, GratsOptions } from "../lib";
import { printSchemaWithDirectives } from "@graphql-tools/utils";
import * as ts from "typescript";

async function main() {
const write = process.argv.some((arg) => arg === "--write");
Expand Down

0 comments on commit 1bd182f

Please sign in to comment.