Skip to content

Commit

Permalink
Align JS docs snippets to use single quotes
Browse files Browse the repository at this point in the history
Reviewed By: jacdebug

Differential Revision: D40337918

fbshipit-source-id: 6dfcb83d3976117d6642310e0658986daa537854
  • Loading branch information
huntie authored and facebook-github-bot committed Oct 13, 2022
1 parent dc02eac commit 355f0d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/Configuration.md
Expand Up @@ -186,7 +186,7 @@ resolveRequest: (context, moduleName, platform) => {
// Resolve file path logic...
// NOTE: Throw an error if there is no resolution.
return {
filePath: "path/to/file",
filePath: 'path/to/file',
type: 'sourceFile',
};
}
Expand Down Expand Up @@ -445,7 +445,7 @@ This allows overriding and removing default config parameters such as `platforms

```js
// metro.config.js
const { mergeConfig } = require("metro-config");
const { mergeConfig } = require('metro-config');

const configA = {
/* general options */
Expand Down

0 comments on commit 355f0d9

Please sign in to comment.