aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorFatih Arslan <ftharsln@gmail.com>2014-05-05 10:11:53 +0000
committerFatih Arslan <ftharsln@gmail.com>2014-05-05 10:11:53 +0000
commit51482a20c556a46e62b937e83911f657f002d29f (patch)
treef828fc37d94bcf1e0ffe2c0c2f6c1384072a7826 /README.md
parent4903193a1abbe24a50dc0074d85723cae7e1eddf (diff)
downloadcolour-51482a20c556a46e62b937e83911f657f002d29f.tar.gz
colour-51482a20c556a46e62b937e83911f657f002d29f.tar.bz2
Update README.md
Diffstat (limited to 'README.md')
-rw-r--r--README.md5
1 files changed, 2 insertions, 3 deletions
diff --git a/README.md b/README.md
index d9d9aef..24b7182 100644
--- a/README.md
+++ b/README.md
@@ -6,7 +6,6 @@ Color let you use colorized outputs in terms of [ANSI Escape
Codes](http://en.wikipedia.org/wiki/ANSI_escape_code#Colors). The API can be
used in several way, pick one that suits you.
-The package is under ongoing development, checkout for regular updates.
![Color](http://i.imgur.com/c1JI0lA.png)
@@ -56,7 +55,7 @@ whiteBackground := red.Add(color.BgWhite)
whiteBackground.Println("Red text with White background.")
```
-### Custom print functions
+### Custom print functions (PrintFunc)
```go
// Create a custom print function for convenient
@@ -69,7 +68,7 @@ notice := color.New(color.Bold, color.FgGreen).PrintlnFunc()
notice("don't forget this...")
```
-### Insert into noncolor strings
+### Insert into noncolor strings (SprintFunc)
```go
// Create SprintXxx functions to mix strings with other non-colorized strings: