grim/glibre

Fix some typos
default tip
15 months ago, Elliott Sales de Andrade
f5f875b772b5
Fix some typos

Testing Done:
Re-configured.

Reviewed at https://reviews.imfreedom.org/r/2296/
/*
* GlibRe - The glib regex tester
* Copyright (C) 2010-2021 Gary Kramlich <grim@reaperworld.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef GLIBRE_WINDOW_H
#define GLIBRE_WINDOW_H
#include <glib.h>
#include <glib-object.h>
#include <gtk/gtk.h>
G_BEGIN_DECLS
#define GLIBRE_TYPE_WINDOW (glibre_window_get_type())
G_DECLARE_FINAL_TYPE(GlibreWindow, glibre_window, GLIBRE, WINDOW,
GtkApplicationWindow)
GtkWidget *glibre_window_new(GtkApplication *application);
G_END_DECLS
#endif /* GLIBRE_WINDOW_H */