Skip to content

Commit 2274c85

Browse files
authored
Fix: Placeholder Inputs.md
'Longitude' used as placeholder in both places - one shuold be 'latitude'.
1 parent b9d6ff0 commit 2274c85

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/Inputs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -889,7 +889,7 @@ Now the component will render with a label:
889889
```html
890890
<label>Position</label>
891891
<span>
892-
<input name="lat" type="number" placeholder="longitude" value={record.lat} />
892+
<input name="lat" type="number" placeholder="latitude" value={record.lat} />
893893
<input name="lng" type="number" placeholder="longitude" value={record.lng} />
894894
</span>
895895
```

0 commit comments

Comments
 (0)