From bc7134c30540965b26b14722a9643b386ddf7971 Mon Sep 17 00:00:00 2001 From: Simon Eskildsen Date: Wed, 16 Oct 2013 15:28:51 -0400 Subject: [PATCH] Fix some quotes --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 24c4aa8..cad2676 100644 --- a/README.md +++ b/README.md @@ -22,13 +22,13 @@ created (see example below), such as the place to redirect output. Logging can be done with the global logging module: ```go -logrus.Debug("Something debugworthy happened: %s", importantStuff") -logrus.Info("Something infoworthy happened: %s", importantStuff") +logrus.Debug("Something debugworthy happened: %s", importantStuff) +logrus.Info("Something infoworthy happened: %s", importantStuff) -logrus.Warning("Something bad happened: %s", importantStuff") +logrus.Warning("Something bad happened: %s", importantStuff) // Reports to Airbrake -logrus.Fatal("Something fatal happened: %s", importantStuff") +logrus.Fatal("Something fatal happened: %s", importantStuff) // Reports to Airbrake // Then exits ```