Fix some typos

This commit is contained in:
Alex Hirsch 2020-11-20 23:18:40 +01:00
parent 9039c95690
commit a46cc5981f
3 changed files with 3 additions and 3 deletions

View File

@ -46,7 +46,7 @@ Preferably use the following link.
- [C++ Core Guidelines](http://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines) - [C++ Core Guidelines](http://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines)
- [cppreference.com](http://en.cppreference.com) - [cppreference.com](http://en.cppreference.com)
## Talks 🎥 ## 🎥 Talks
- [CppCon 2018 — *Simplicity: Not Just For Beginners*](https://www.youtube.com/watch?v=n0Ak6xtVXno) - [CppCon 2018 — *Simplicity: Not Just For Beginners*](https://www.youtube.com/watch?v=n0Ak6xtVXno)
- [CppCon 2019 — *Naming is Hard: Let's Do Better*](https://www.youtube.com/watch?v=MBRoCdtZOYg) - [CppCon 2019 — *Naming is Hard: Let's Do Better*](https://www.youtube.com/watch?v=MBRoCdtZOYg)

View File

@ -26,7 +26,7 @@ You are allowed to use:
- [OpenAL](https://openal.org/) - [OpenAL](https://openal.org/)
- [nlohmann/json](https://github.com/nlohmann/json) / [RapidJSON](https://rapidjson.org/) - [nlohmann/json](https://github.com/nlohmann/json) / [RapidJSON](https://rapidjson.org/)
- [Assimp](https://www.assimp.org/) - [Assimp](https://www.assimp.org/)
- [sbt-image](https://github.com/nothings/stb/blob/master/stb_image.h) - [stb-image](https://github.com/nothings/stb/blob/master/stb_image.h)
- [Ogg](https://xiph.org/ogg/) / [Vorbis](https://xiph.org/vorbis/) / [Opus](https://opus-codec.org/) - [Ogg](https://xiph.org/ogg/) / [Vorbis](https://xiph.org/vorbis/) / [Opus](https://opus-codec.org/)
- [Tiled](https://www.mapeditor.org/) - [Tiled](https://www.mapeditor.org/)
- [OpenSSL](https://www.openssl.org/) - [OpenSSL](https://www.openssl.org/)

View File

@ -7,7 +7,7 @@
class Plugin { class Plugin {
public: public:
virtual void run() = 0; virtual void run() = 0;
virtual ~Plugin(){}; virtual ~Plugin() {}
}; };
/// Symbol of the plugin constructor function. /// Symbol of the plugin constructor function.