Skip to content

Commit

Permalink
Minor changes in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
iph0 committed Jun 30, 2018
1 parent d3e2d27 commit 230a65e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@

[![GoDoc](https://godoc.org/github.com/iph0/conf?status.svg)](https://godoc.org/github.com/iph0/conf) [![Build Status](https://travis-ci.org/iph0/conf.svg?branch=master)](https://travis-ci.org/iph0/conf) [![Go Report Card](https://goreportcard.com/badge/github.com/iph0/conf)](https://goreportcard.com/report/github.com/iph0/conf)

Package conf is an extensible solution for cascading configuration of application.
Package conf provides configuration processor that can load configuration layers
from different sources and merges them into the one configuration tree. In addition
Package conf is an extensible solution for cascading configuration. Package conf
provides configuration processor that can load configuration layers from
different sources and merges them into the one configuration tree. In addition
configuration processor can expand variables in string values and process _var
and _include directives in resulting configuration tree. Package conf comes with
built-in configuration loaders: fileconf and envconf, and can be extended by
third-party configuration loaders. Package conf do not watch for configuration
changes, but you can implement this feature in the custom configuration loader.

See full documentation on [GoDoc](https://godoc.org/github.com/iph0/conf) for
more information.
6 changes: 3 additions & 3 deletions doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
// be found in the LICENSE file.

/*
Package conf is an extensible solution for cascading configuration of application.
Package conf provides configuration processor, that can load configuration layers
from different sources and merges them into the one configuration tree. In addition
Package conf is an extensible solution for cascading configuration. Package conf
provides configuration processor, that can load configuration layers from
different sources and merges them into the one configuration tree. In addition
configuration processor can expand variables in string values and process _var
and _include directives in resulting configuration tree (see below). Package
conf comes with built-in configuration loaders: fileconf and envconf, and can be
Expand Down

0 comments on commit 230a65e

Please sign in to comment.