From 6088194af18bb7beeee00afe900fd36f845b1a70 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Viktor=20Sz=C3=A9pe?= <viktor@szepe.net>
Date: Wed, 11 Oct 2023 09:03:29 +0200
Subject: [PATCH 1/2] Make typos check hidden files too

---
 .typos.toml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/.typos.toml b/.typos.toml
index 9dedeef8526a..d0b234448326 100644
--- a/.typos.toml
+++ b/.typos.toml
@@ -1,3 +1,9 @@
+[files]
+extend-exclude = [
+    ".git/",
+]
+ignore-hidden = false
+
 [default]
 extend-ignore-re = [
     # that's a ipv6

From c67080f597d7e161842e6e8275ff2e1424a8ca42 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Viktor=20Sz=C3=A9pe?= <viktor@szepe.net>
Date: Wed, 11 Oct 2023 09:10:05 +0200
Subject: [PATCH 2/2] Fix a typo in ci.yml

---
 .github/workflows/ci.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 826e65aeee60..964c5757270f 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -396,7 +396,7 @@ jobs:
           cargo +stable clippy --tests --manifest-path examples/mysql/getting_started_step_3/Cargo.toml
           cargo +stable clippy --tests --manifest-path examples/mysql/all_about_inserts/Cargo.toml
 
-      - name: Check formating
+      - name: Check formatting
         run: cargo +stable fmt --all -- --check
 
   sqlite_bundled: