summaryrefslogtreecommitdiff
path: root/content/gemtext
diff options
context:
space:
mode:
authorPaul Buetow <git@mx.buetow.org>2021-05-01 18:42:52 +0100
committerPaul Buetow <git@mx.buetow.org>2021-05-01 18:42:52 +0100
commitd87c9743b94c3d2aec705eedeeb68e3b79a3a0dd (patch)
treecf75bd9e95ca9554e60dd3d6c93b59de74d26f42 /content/gemtext
parent914219bbfa5e9a716ef0c3b821ee0922e20baa3e (diff)
better
Diffstat (limited to 'content/gemtext')
-rw-r--r--content/gemtext/gemfeed/2016-11-20-methods-in-c.gmi2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/gemtext/gemfeed/2016-11-20-methods-in-c.gmi b/content/gemtext/gemfeed/2016-11-20-methods-in-c.gmi
index 88315d23..0b22bc03 100644
--- a/content/gemtext/gemfeed/2016-11-20-methods-in-c.gmi
+++ b/content/gemtext/gemfeed/2016-11-20-methods-in-c.gmi
@@ -8,7 +8,7 @@ You can do some sort of object oriented programming in the C Programming Languag
## Example
-Lets take a look at the following sample program. Basically all you have to do is to add a function pointer such as "calculate" to the definition of struct "something_s". Later, during the struct initialization, assign a function address to that function pointer:
+Lets have a look at the following sample program. Basically all you have to do is to add a function pointer such as "calculate" to the definition of struct "something_s". Later, during the struct initialization, assign a function address to that function pointer:
```
#include <stdio.h>