Skip to content

Commit e11d29b

Browse files
authored
Fix various typos (#567)
Signed-off-by: Kentaro Hayashi <[email protected]>
1 parent d3bc53e commit e11d29b

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

configuration/config-file-yaml.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ This section describes some useful features for the configuration file.
470470
You can write multiline values for `"` quoted string, array and hash values.
471471

472472
```yaml
473-
str_param: "foo # Converts to "foo bar". As NL interpretation will be required for continuos newlines.
473+
str_param: "foo # Converts to "foo bar". As NL interpretation will be required for continuous newlines.
474474
bar"
475475
476476
str_param: "foo # Converts to "foo\nbar".

formatter/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This article gives an overview of the Formatter Plugin.
1616

1717
## Overview
1818

19-
Sometimes, the output format for an output plugin does not meet one's needs. Fluentd has a pluggable system called Formatter that lets the user extend and re-use custom output formats.
19+
Sometimes, the output format for an output plugin does not meet one's needs. Fluentd has a pluggable system called Formatter that lets the user extend and reuse custom output formats.
2020

2121
## How To Use
2222

how-to-guides/free-alternative-to-splunk-by-fluentd.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ $ sudo systemctl restart rsyslog
145145

146146
Once Fluentd receives some event logs from `rsyslog` and has flushed them to Elasticsearch, you can view, search and visualize the log data using Kibana.
147147

148-
For starters, let's access `http://localhost:5601` and click the `Set up index patters` button in the upper-right corner of the screen.
148+
For starters, let's access `http://localhost:5601` and click the `Set up index patterns` button in the upper-right corner of the screen.
149149

150150
![Kibana Top Menu](../.gitbook/assets/kibana6-screenshot-topmenu.png)
151151

how-to-guides/splunk-like-grep-and-alert-email.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Here is the full configuration example \(copy and edit as needed\):
4545
count_interval 3 # The time window for counting errors (in secs)
4646
input_key code # The field to apply the regular expression
4747
regexp ^5\d\d$ # The regular expression to be applied
48-
threshold 1 # The minimum number of erros to trigger an alert
48+
threshold 1 # The minimum number of errors to trigger an alert
4949
add_tag_prefix error_5xx # Generate tags like "error_5xx.apache.access"
5050
</match>
5151

input/tail.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ Example:
443443
<group>
444444
<rule>
445445
match {
446-
directoy: /payment/
446+
directory: /payment/
447447
}
448448
limit 2000
449449
</rule>

plugin-development/api-plugin-filter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ module Fluent::Plugin
3232
# end
3333

3434
def filter(tag, time, record)
35-
# Since our example is a pass-thru filter, it does nothing and just
35+
# Since our example is a pass-through filter, it does nothing and just
3636
# returns the record as-is.
3737
# If returns nil, that records are ignored.
3838
record

0 commit comments

Comments
 (0)