Skip to content

Commit 1bf3ba1

Browse files
committed
Added spaces and commas
1 parent a09324c commit 1bf3ba1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

INFLUXDB_MAPPER.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
### InfluxDBMapper
22

3-
In case you want to use models only you can use the InfluxDBMapper to save and load measurements.
3+
In case you want to use models only, you can use the InfluxDBMapper to save and load measurements.
44
You can create models that specify the database the measurement and the retention policy.
55

66
```Java
@@ -25,7 +25,7 @@ public class Cpu {
2525
Save operation using a model.
2626

2727
```Java
28-
Cpu cpu = ..create the cpu measure
28+
Cpu cpu = .., create the cpu measure
2929
influxDBMapper.save(cpu);
3030
```
3131

@@ -35,10 +35,10 @@ Load data using a model.
3535
Cpu persistedCpu = influxDBMapper.query(Cpu.class).get(0);
3636
```
3737

38-
Load data using a query and specify the model fro mapping.
38+
Load data using a query and specify the model for mapping.
3939

4040
```java
41-
Query query = ..create your query
41+
Query query = ... create your query
4242
List<Cpu> persistedMeasure = influxDBMapper.query(query,Cpu.class);
4343
```
4444

0 commit comments

Comments
 (0)