Skip to content

Commit 065b9c2

Browse files
Merge pull request #1930 from Fcmam5/patch-1
docs: fix code snippet
2 parents 0e6cb53 + 3185a75 commit 065b9c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/techniques/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ const YAML_CONFIG_FILENAME = 'config.yaml';
152152
153153
export default () => {
154154
return yaml.load(
155-
fs.readFileSync(join(__dirname, YAML_CONFIG_FILENAME), 'utf8'),
155+
readFileSync(join(__dirname, YAML_CONFIG_FILENAME), 'utf8'),
156156
) as Record<string, any>;
157157
};
158158
```

0 commit comments

Comments
 (0)