Skip to content

Commit ac79675

Browse files
Added missing hashtag on include statement
1 parent 65eff6f commit ac79675

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ A simple PID controller library for Arduino
55

66
# Usage
77
```java
8-
include <PIDController.h>
8+
#include <PIDController.h>
99
PIDController pid;
1010
```
1111

@@ -16,7 +16,7 @@ Then create an instance of the class.
1616
---
1717

1818
```java
19-
include <PIDController.h>
19+
#include <PIDController.h>
2020
PIDController pid;
2121

2222
void setup () {

0 commit comments

Comments
 (0)