Skip to content

Commit 3185a75

Browse files
authored
docs: fix code snippet
1 parent 0e6cb53 commit 3185a75

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)