diff --git a/dangerfile.ts b/dangerfile.ts
index 81d8e01c2..9265ea84d 100644
--- a/dangerfile.ts
+++ b/dangerfile.ts
@@ -118,10 +118,6 @@ import dtsGenerator from "./scripts/danger-dts"
const currentDTS = dtsGenerator()
const savedDTS = fs.readFileSync("source/danger.d.ts").toString()
if (currentDTS !== savedDTS) {
- console.log("Current:")
- console.log(currentDTS)
- console.log("New:")
- console.log(savedDTS)
const message = "There are changes to the Danger DSL which are not reflected in the current danger.d.ts."
const idea = "Please run yarn declarations
and update this PR."
fail(`${message}
${idea}`)
diff --git a/source/danger.d.ts b/source/danger.d.ts
index 181dcbe5a..514048c00 100644
--- a/source/danger.d.ts
+++ b/source/danger.d.ts
@@ -1,6 +1,6 @@
export type MarkdownString = string
-/** A platform agnostic refernce to a Git commit */
+/** A platform agnostic reference to a Git commit */
export interface GitCommit {
/** The SHA for the commit */
sha: string,