Rename pannel to panel

This commit is contained in:
Tyler Perkins 2021-09-16 20:27:15 -04:00
parent 0a2cc52f7f
commit a0c045f792
2 changed files with 4 additions and 4 deletions

View File

@ -4,4 +4,4 @@
// pannel implementation // pannel implementation
// //
#include "pannel.hpp" #include "panel.hpp"

View File

@ -18,10 +18,10 @@
#include <SDL2/SDL_ttf.h> #include <SDL2/SDL_ttf.h>
namespace dashboard { namespace dashboard {
class pannel { class panel {
public: public:
pannel() = default; panel() = default;
~pannel() = default; ~panel() = default;
virtual void draw() = 0; virtual void draw() = 0;