Improve examples in docs

This commit is contained in:
Christian Rocha
2020-07-30 11:29:20 -04:00
parent 17035473db
commit 6fcdf9908f
3 changed files with 39 additions and 11 deletions

9
tea.go
View File

@@ -1,7 +1,8 @@
// Package tea provides an Elm-inspired framework for building rich terminal
// user interfaces. It's well-suited for simple and complex terminal
// applications, either inline, full-window, or a mix of both. It's been
// battle-tested in several large projects and is production-ready.
// Package tea provides a framework for building rich terminal user interfaces
// based on the paradigms of The Elm Architecture. It's well-suited for simple
// and complex terminal applications, either inline, full-window, or a mix of
// both. It's been battle-tested in several large projects and is
// production-ready.
//
// A tutorial is available at https://github.com/charmbracelet/bubbletea/tree/master/tutorials
//