Skip to content

Commit 038df42

Browse files
readme: remove company name from exporter
1 parent be82ebd commit 038df42

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["Ernestas Poskus <[email protected]>"]
33
autobins = false
4-
description = "Vinted Elasticsearch exporter\n"
4+
description = "Proper Elasticsearch exporter\n"
55
documentation = "https://docs.rs/elasticsearch_exporter"
66
edition = "2021"
77
homepage = "https://github.com/vinted/elasticsearch-exporter-rs"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ $ docker run --network=host -it vinted/elasticsearch_exporter --elasticsearch_ur
121121

122122
```shell
123123
$ curl -s http://127.0.0.1:9222
124-
Vinted Elasticsearch exporter
124+
Proper Elasticsearch exporter
125125

126126
Available /_cat subsystems:
127127
- cat_allocation

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#![feature(hash_extract_if)]
22

3-
//! # Vinted Elasticsearch exporter
3+
//! # Proper Elasticsearch exporter
44
#![deny(
55
warnings,
66
bad_style,

src/options.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ fn vec_to_string(output: &mut String, field: &'static str, fields: &[&'static st
243243

244244
impl fmt::Display for ExporterOptions {
245245
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
246-
let mut output = String::from("Vinted Elasticsearch exporter");
246+
let mut output = String::from("Proper Elasticsearch exporter");
247247

248248
output.push('\n');
249249
vec_to_string(

0 commit comments

Comments
 (0)