From ab2de74575fb5c49c8ea49fd9001c3839021aa52 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Tue, 14 Jan 2020 13:23:01 -0500 Subject: [PATCH] Add quotes around verbs in final section --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4fccae0..48c9e70 100644 --- a/README.md +++ b/README.md @@ -711,14 +711,14 @@ static void process_events(...); static struct foobar *foobar_from_foobaz(...); ``` -Programmers **MUST use the verbs create and destroy for heap objects:** +Programmers **MUST use the verbs "create" and "destroy" for heap objects:** ```c struct my_struct *my_struct_create(...); void my_struct_destroy(struct my_struct *in); ``` -Programmers **MUST use the verbs init and finish for stack objects:** +Programmers **MUST use the verbs "init" and "finish" for stack objects:** ```c void my_struct_init(struct my_struct *in, ...); -- 2.45.2