Skip to content

Commit bc9d7fd

Browse files
committed
fix: shorten file name
1 parent f7cdece commit bc9d7fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ while !my_file.is_eof() {
3939

4040
For writing files:
4141
```rust
42-
let my_other_file = root_dir.open_file_in_dir("MY_OTHER_FILE.CSV", embedded_sdmmc::Mode::ReadWriteCreateOrAppend)?;
42+
let my_other_file = root_dir.open_file_in_dir("FILE2.CSV", embedded_sdmmc::Mode::ReadWriteCreateOrAppend)?;
4343
my_other_file.write(b"Timestamp,Signal,Value\n")?;
4444
my_other_file.write(b"2025-01-01T00:00:00Z,TEMP,25.0\n")?;
4545
my_other_file.write(b"2025-01-01T00:00:01Z,TEMP,25.1\n")?;

0 commit comments

Comments
 (0)