Skip to content

Commit e2acac3

Browse files
authored
Fixed error in part3.md.
Delete '=' at line #47 and #48.
1 parent 858ed7a commit e2acac3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

_parts/part3.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ That means we need to upgrade our `prepare_statement` function to parse argument
4444
We store those parsed arguments into a new `Row` data structure inside the statement object:
4545

4646
```diff
47-
+#define COLUMN_USERNAME_SIZE = 32;
48-
+#define COLUMN_EMAIL_SIZE = 255;
47+
+#define COLUMN_USERNAME_SIZE 32;
48+
+#define COLUMN_EMAIL_SIZE 255;
4949
+struct Row_t {
5050
+ uint32_t id;
5151
+ char username[COLUMN_USERNAME_SIZE];

0 commit comments

Comments
 (0)