Skip to content

Commit 691c75b

Browse files
authored
Fix copy'n'paste spelling mistakes. (#20)
1 parent a29de9e commit 691c75b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/Advanced/DAC_One_Channel/DAC_One_Channel.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ void dac_output_sq(AdvancedDAC &dac_out) {
2727
buf.data()[i] = (i % 2 == 0) ? 0: 0xfff;
2828
}
2929

30-
// Writethe buffer to DAC.
30+
// Write the buffer to DAC.
3131
dac_out.write(buf);
3232
}
3333
}

examples/Advanced/DAC_Sine_wave/DAC_Sine_wave.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ void loop() {
3232
buf[i] = lut[lut_offs % lut_size];
3333
}
3434

35-
// Writethe buffer to DAC.
35+
// Write the buffer to DAC.
3636
dac1.write(buf);
3737
}
3838
}

examples/Advanced/DAC_Two_Channels/DAC_Two_Channels.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ void dac_output_sq(AdvancedDAC &dac_out) {
3333
buf.data()[i] = (i % 2 == 0) ? 0: 0xfff;
3434
}
3535

36-
// Writethe buffer to DAC.
36+
// Write the buffer to DAC.
3737
dac_out.write(buf);
3838
}
3939
}

0 commit comments

Comments
 (0)