Skip to content
This repository was archived by the owner on Dec 8, 2023. It is now read-only.

Commit 9c651b6

Browse files
committed
fix it
1 parent 7225895 commit 9c651b6

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.grit/patterns/util_upsert.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ pattern upsert($key, $value) {
3232
3333
// Test case
3434
or {
35-
`hello($obj)` where { $obj <: upsert(key=`hello`, value=`"world"`) },
36-
`string_key($obj)` where { $obj <: upsert(key=`"hello-world"`, value=`"niceness"`)}
35+
`hello($obj)` where { $obj <: upsert(key=`hello`, value=`'world'`) },
36+
`string_key($obj)` where { $obj <: upsert(key=`'hello-world'`, value=`'niceness'`)}
3737
}
3838
```
3939

@@ -52,15 +52,15 @@ hello({ king: 'old-string' });
5252
```
5353

5454
```js
55-
hello({ hello: "world" });
55+
hello({ hello: 'world' });
5656

57-
hello({ thing: 'two', hello: "world" });
57+
hello({ thing: 'two', hello: 'world' });
5858

59-
hello({ hello: "world" });
59+
hello({ hello: 'world' });
6060

61-
hello({ hello: "world" });
61+
hello({ hello: 'world' });
6262

63-
hello({ king: 'old-string', hello: "world" });
63+
hello({ king: 'old-string', hello: 'world' });
6464
```
6565

6666
## String key
@@ -74,7 +74,7 @@ string_key({ 'hello-world': 'boss' });
7474
```
7575

7676
```js
77-
string_key({ "hello-world": "niceness" });
77+
string_key({ 'hello-world': 'niceness' });
7878

79-
string_key({ 'hello-world': "niceness" });
79+
string_key({ 'hello-world': 'niceness' });
8080
```

0 commit comments

Comments
 (0)