summaryrefslogtreecommitdiffstats
path: root/CONTRIBUTING.md
diff options
context:
space:
mode:
authorCengiz Can <cengizc@gmail.com>2015-06-02 00:26:57 +0200
committerCengiz Can <cengizc@gmail.com>2015-06-04 10:48:56 +0200
commitc967698b2de6a0c588dbf0cebc493dbb03989333 (patch)
tree90ed066862c081299e02b173b9de99643e7e5732 /CONTRIBUTING.md
parentMerge pull request #2202 from mc-server/CmakeCleanup (diff)
downloadcuberite-c967698b2de6a0c588dbf0cebc493dbb03989333.tar
cuberite-c967698b2de6a0c588dbf0cebc493dbb03989333.tar.gz
cuberite-c967698b2de6a0c588dbf0cebc493dbb03989333.tar.bz2
cuberite-c967698b2de6a0c588dbf0cebc493dbb03989333.tar.lz
cuberite-c967698b2de6a0c588dbf0cebc493dbb03989333.tar.xz
cuberite-c967698b2de6a0c588dbf0cebc493dbb03989333.tar.zst
cuberite-c967698b2de6a0c588dbf0cebc493dbb03989333.zip
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r--CONTRIBUTING.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 4e57e6efb..1b43ed214 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -23,7 +23,7 @@ Here are the conventions:
- This helps prevent mistakes such as `if (a & 1 == 0)`
*
* Use the provided wrappers for OS stuff:
- - Threading is done by inheriting from `cIsThread`, thread synchronization through `cCriticalSection`, `cSemaphore` and `cEvent`, file access and filesystem operations through the `cFile` class, high-precision timers through `cTimer`, high-precision sleep through `cSleep`
+ - Threading is done by inheriting from `cIsThread`, thread synchronization through `cCriticalSection` and `cEvent`, file access and filesystem operations through the `cFile` class, high-precision timers through `cTimer`, high-precision sleep through `cSleep`
* No magic numbers, use named constants:
- `E_ITEM_XXX`, `E_BLOCK_XXX` and `E_META_XXX` for items and blocks
- `cEntity::etXXX` for entity types, `cMonster::mtXXX` for mob types