Make it clear that the struct should not hold the data directly

This commit is contained in:
Jan-Erik Rediger 2019-05-20 11:17:30 +02:00
Родитель 2d67de7b1a
Коммит d2aef29503
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -9,7 +9,7 @@ Adding a new metric type involves defining the metric type's API, its persisted
A metric type implementation is defined in its own file under `glean-core/src/metrics/`, e.g. `glean-core/src/metrics/counter.rs` for a [Counter](/user/metrics/counter.md).
Start by defining a structure:
Start by defining a structure to hold the metric's metadata:
```rust,noplaypen
#[derive(Debug)]