aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2015-03-02 21:35:31 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2015-03-02 21:35:31 +0000
commit513f8791d85bbaf75cea6a942f689a9fc128805e (patch)
treeec41d84b201fb3620a1d96fc8d2c7fd86cef6b63 /README.md
parent1eea90048f8f0e6360171d254c1f60f41a090814 (diff)
downloadsrc-513f8791d85bbaf75cea6a942f689a9fc128805e.tar.gz
src-513f8791d85bbaf75cea6a942f689a9fc128805e.zip
Update libucl to git version 8d3b186
Notes
Notes: svn path=/vendor/libucl/dist/; revision=279546
Diffstat (limited to 'README.md')
-rw-r--r--README.md16
1 files changed, 8 insertions, 8 deletions
diff --git a/README.md b/README.md
index 235cfb6595df..797278ba932a 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
# LIBUCL
-[![Build Status](https://travis-ci.org/vstakhov/libucl.svg?branch=master)](https://travis-ci.org/vstakhov/libucl)
+[![Build Status](https://travis-ci.org/vstakhov/libucl.svg?branch=master)](https://travis-ci.org/vstakhov/libucl)[![Coverity](https://scan.coverity.com/projects/4138/badge.svg)](https://scan.coverity.com/projects/4138)
**Table of Contents** *generated with [DocToc](http://doctoc.herokuapp.com/)*
@@ -156,10 +156,10 @@ is converted to the following object:
```nginx
section {
blah {
- key = value;
+ key = value;
}
foo {
- key = value;
+ key = value;
}
}
```
@@ -177,9 +177,9 @@ is presented as:
```nginx
section {
blah {
- foo {
- key = value;
- }
+ foo {
+ key = value;
+ }
}
}
```
@@ -219,8 +219,8 @@ UCL supports external macros both multiline and single line ones:
```nginx
.macro "sometext";
.macro {
- Some long text
- ....
+ Some long text
+ ....
};
```