aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMáximo Cuadros <mcuadros@gmail.com>2016-02-16 17:12:25 +0100
committerMáximo Cuadros <mcuadros@gmail.com>2016-02-16 17:12:25 +0100
commitbd0ca464cc5ddbb3fc88ac38d15d691ca46c150e (patch)
treeafd44fe11631fd5197ec30f5fdfff474edd612e3
parentdef82b9992f5b1b4c5f8ba10ae12a4159b34cc3e (diff)
parent99fa2c88a9fcc4f363fd840035a8d4ae5cb2b20f (diff)
downloadgo-git-bd0ca464cc5ddbb3fc88ac38d15d691ca46c150e.tar.gz
Merge pull request #25 from shawnps/patch-1
fix typo
-rw-r--r--blame.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/blame.go b/blame.go
index 66224fe..2ef1210 100644
--- a/blame.go
+++ b/blame.go
@@ -2,7 +2,7 @@
//
// Blaming a file is finding what commit was the last to modify each of
// the lines in the file, therefore the output of a blaming operation is
-// usualy a slice of commits, one commit per line in the file.
+// usually a slice of commits, one commit per line in the file.
//
// This package also provides a pretty print function to output the
// results of a blame in a similar format to the git-blame command.