Fix typo in get.md (#4495)

pull/4501/head^2
Mauricio Genebrieres 2022-09-30 14:59:20 -03:00 committed by GitHub
parent fc0110aa1a
commit 6b33724318
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -67,7 +67,7 @@ Default value to return if the specified key does not exist in the record.
## Examples
### Dynamically return a value from a recordd
### Dynamically return a value from a record
```js
import "experimental/record"
@ -75,7 +75,7 @@ import "experimental/record"
key = "foo"
exampleRecord = {foo: 1.0, bar: "hello"}
record.get(r: exampleRecord, key: key, default: "")// Returns 1.0
record.get(r: exampleRecord, key: key, default: "") // Returns 1.0
```