Skip to content

Commit

Permalink
doc: GOLANG: fix some typos (fluent#1360)
Browse files Browse the repository at this point in the history
Signed-off-by: Denis Andrejew <[email protected]>
  • Loading branch information
seeekr authored and edsiper committed Jun 10, 2019
1 parent 02f73b6 commit 1188110
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions GOLANG_OUTPUT_PLUGIN.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

The current development version of Fluent Bit, integrates support to load
_shared_ plugins built in Golang. The interface still needs some adjustment
but is functional, the expectation is to release Fluent Bit v0.10 with fully
but is functional. The expectation is to release Fluent Bit v0.10 with full
support for Go.

## Getting Started
Expand Down Expand Up @@ -79,9 +79,9 @@ func main() {
}
```

The code above is a template to write an output plugin, it's really important
to keep the package name as `main` and add an explicit `main()` function.
This is a requirement as the code will be build as a shared library.
The code above is a template to write an output plugin. It's really important
to keep the package name as `main` and add an explicit `main()` function.
This is a requirement as the code will be built as a shared library.

To build the code above, use the following line:

Expand All @@ -107,4 +107,4 @@ $ ldd out_gstdout.so
$ bin/fluent-bit -e /path/to/out_gstdout.so -i cpu -o gstdout
```

for more details or assistance write to [email protected]
For more details or assistance write to [email protected]

0 comments on commit 1188110

Please sign in to comment.