1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-29 04:40:03 -04:00
* Fix typos in comments

* Fix typos in demo texts

* Fix typos in code names

* Fix typos in cargos

* Fix typos in changelogs
This commit is contained in:
Jozef Číž
2023-04-18 15:52:45 +02:00
committed by GitHub
parent 8326fffdb0
commit 33aa4d698f
30 changed files with 51 additions and 51 deletions

View File

@@ -155,7 +155,7 @@ impl<'a> DatePickerPopup<'a> {
ui.with_layout(Layout::top_down_justified(Align::Center), |ui| {
if ui
.button("<<<")
.on_hover_text("substract one year")
.on_hover_text("subtract one year")
.clicked()
{
popup_state.year -= 1;
@@ -171,7 +171,7 @@ impl<'a> DatePickerPopup<'a> {
ui.with_layout(Layout::top_down_justified(Align::Center), |ui| {
if ui
.button("<<")
.on_hover_text("substract one month")
.on_hover_text("subtract one month")
.clicked()
{
popup_state.month -= 1;
@@ -189,7 +189,7 @@ impl<'a> DatePickerPopup<'a> {
});
strip.cell(|ui| {
ui.with_layout(Layout::top_down_justified(Align::Center), |ui| {
if ui.button("<").on_hover_text("substract one day").clicked() {
if ui.button("<").on_hover_text("subtract one day").clicked() {
popup_state.day -= 1;
if popup_state.day == 0 {
popup_state.month -= 1;