Skip to content

Commit 9548e8d

Browse files
authored
fix formatting
1 parent 3b15edb commit 9548e8d

File tree

1 file changed

+2
-2
lines changed
  • libraries/rp2350/examples/PlatformioPSRAMDemo

1 file changed

+2
-2
lines changed

libraries/rp2350/examples/PlatformioPSRAMDemo/main.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ void setup()
1919
// Reserve space in the PSRAM vector
2020
psramVector.resize(100);
2121

22-
// Write some values
22+
// Write some values
2323
for (size_t i = 0; i < psramVector.size(); i++)
2424
{
2525
psramVector[i] = i * 2; // e.g. fill with even numbers
@@ -29,7 +29,7 @@ void setup()
2929

3030
delay(1000);
3131

32-
// Read them back
32+
// Read them back
3333
Serial.println("Reading back the first 10 elements:");
3434
for (size_t i = 0; i < 10 && i < psramVector.size(); i++)
3535
{

0 commit comments

Comments
 (0)