summaryrefslogtreecommitdiff
path: root/gemfeed
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2022-01-30 13:39:03 +0000
committerPaul Buetow <paul@buetow.org>2022-01-30 13:39:03 +0000
commit823f59c3ac58a2e54f1d0905e4f2c6b375d8cff4 (patch)
tree8bc34ee0c7b6e5e17edfe26cae024044fd2840cf /gemfeed
parentcf4764802b7544d6463d079e66f78a73f2d48afc (diff)
Publishing new version
Diffstat (limited to 'gemfeed')
-rw-r--r--gemfeed/2016-11-20-object-oriented-programming-with-ansi-c.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/gemfeed/2016-11-20-object-oriented-programming-with-ansi-c.md b/gemfeed/2016-11-20-object-oriented-programming-with-ansi-c.md
index c4f6c031..4292cad5 100644
--- a/gemfeed/2016-11-20-object-oriented-programming-with-ansi-c.md
+++ b/gemfeed/2016-11-20-object-oriented-programming-with-ansi-c.md
@@ -84,7 +84,7 @@ However, that's not really how it works in object-oriented languages such as Jav
mult.calculate(mult,a,b));
```
-## Real object oriented proramming with C
+## Real object oriented programming with C
If you want to take it further, hit "Object-Oriented Programming with ANSI-C" into your favourite internet search engine or follow the link below. It goes as far as writing a C preprocessor in AWK, which takes some object-oriented pseudo-C and transforms it to plain C so that the C compiler can compile it to machine code. This is similar to how the C++ language had its origins.
@@ -96,7 +96,7 @@ Big C software projects, like Linux, also follow some OOP techniques:
[https://lwn.net/Articles/444910/](https://lwn.net/Articles/444910/)
-C is a very old programming lanuage with it's quirks. This might be one of the reasons why Linux will also let Rust code in.
+C is a very old programming language with it's quirks. This might be one of the reasons why Linux will also let Rust code in.
E-Mail me your comments to paul at buetow dot org!