Skip to content

Commit

Permalink
Small Spelling Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
zakarouf committed Jun 17, 2021
1 parent 7901d80 commit 9a875a9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This library provides Core Functionality built upon the C language. Inspired and

* **Memory Management.** Minimal Memory Tracker for logging memory, Autofree that can act as a build-in deconstructor.
* **Type & Data Structures.** Clean Systematic Data types and Structures with feature-full fuctionality.
* **Meta-Programming.** A abuse of C-preprocessor.
* **Meta-Programming.** An absolute abuse of C-preprocessor.
* **Multi-Threading.** A more elegant way to handle concurrency.
* **Standard Functions.** Did you wanted stuff like logging, better File IO, Generic Printing, Error Handling similar to try catch. Yes we got those.

Expand Down
4 changes: 2 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ INCLUDE_DIR="/usr/local/include/"

sh make-lib.sh

mv -vi build/lib/libzkcollection.a "$LIB_DIR"
mv -ni build/lib/libzkcollection.a "$LIB_DIR"

cp -Ri build/include/z_ "$INCLUDE_DIR"
cp -Rfi build/include/z_ "$INCLUDE_DIR"

rm -rf build/include/z_
3 changes: 2 additions & 1 deletion src/types/enum.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
#include "tuple.h"
#include "../prep/map.h"

/* More Powerful Enum Type Using Tuples
/**
* More Powerful Enum Type Using Tuples
* Usage:
* z__Enum(
WebEvent,
Expand Down

0 comments on commit 9a875a9

Please sign in to comment.