Skip to content

Commit ba97461

Browse files
authored
Merge pull request cstack#34 from shaqsnake/patch-1
Fixed error in part3.md.
2 parents 858ed7a + 1807570 commit ba97461

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)