Merge pull request #237 from ryanfaerman/patch-1

Fixes typo in WithField documentation
diff --git a/logger.go b/logger.go
index dd99759..fd9804c 100644
--- a/logger.go
+++ b/logger.go
@@ -53,7 +53,7 @@
 
 // Adds a field to the log entry, note that you it doesn't log until you call
 // Debug, Print, Info, Warn, Fatal or Panic. It only creates a log entry.
-// Ff you want multiple fields, use `WithFields`.
+// If you want multiple fields, use `WithFields`.
 func (logger *Logger) WithField(key string, value interface{}) *Entry {
 	return NewEntry(logger).WithField(key, value)
 }