1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-06-06 10:30:47 +00:00

fix: typo of variable in CONTRIBUTING (#3595)

This commit is contained in:
Kotaro Abe 2022-02-11 20:07:26 +09:00 committed by GitHub
parent e6a921b5b2
commit 7347d2c195
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -188,7 +188,7 @@ mod tests {
// Here you setup the testing environment // Here you setup the testing environment
let tempdir = tempfile::tempdir()?; let tempdir = tempfile::tempdir()?;
// Create some file needed to render the module // Create some file needed to render the module
File::create(dir.path().join("YOUR_FILE"))?.sync_all()?; File::create(tempdir.path().join("YOUR_FILE"))?.sync_all()?;
// The output of the module // The output of the module
let actual = ModuleRenderer::new("YOUR_MODULE_NAME") let actual = ModuleRenderer::new("YOUR_MODULE_NAME")