Skip to content

Commit 50008e7

Browse files
committed
prettier format updates to documentation
1 parent 52ac4df commit 50008e7

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

packages/framework-base/src/immutable-merge/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -174,11 +174,11 @@ complexObject = processImmutable(
174174
{
175175
object: {
176176
object: {
177-
style: myStyleProcessor
178-
}
179-
}
177+
style: myStyleProcessor,
178+
},
179+
},
180180
},
181-
complexObject
181+
complexObject,
182182
);
183183
```
184184

packages/framework-base/src/memo-cache/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ export const MyComponent = (props: IMyComponentProps) => {
128128
const colors = theme.colors;
129129
return {
130130
backgroundColor: colors.neutralBackground,
131-
color: colors.neutralForeground
131+
color: colors.neutralForeground,
132132
// more stuff from theme
133133
};
134134
}, [theme]);

0 commit comments

Comments
 (0)