glog: fix doc comment for V (#47)

V logs if the level is at most the -v setting.
(If it is bigger (V(2) with -v=1) then it doesn't.)
The text said "at least" instead.
diff --git a/glog.go b/glog.go
index 01a90af..718c34f 100644
--- a/glog.go
+++ b/glog.go
@@ -994,7 +994,7 @@
 //
 // Whether an individual call to V generates a log record depends on the setting of
 // the -v and --vmodule flags; both are off by default. If the level in the call to
-// V is at least the value of -v, or of -vmodule for the source file containing the
+// V is at most the value of -v, or of -vmodule for the source file containing the
 // call, the V call will log.
 func V(level Level) Verbose {
 	// This function tries hard to be cheap unless there's work to do.