Skip to content

Commit 2126e60

Browse files
authored
chore: fix typo (apache#3129)
Adding a user dictionary allows detection of a typo `Arrpw`. ```console $ pre-commit run codespell --all-files codespell................................................................Failed - hook id: codespell - exit code: 65 csharp/src/Drivers/FlightSql/FlightSqlDriver.cs:23: Arrpw ==> Arrow ``` Closes apache#3128
1 parent 50addb4 commit 2126e60

File tree

4 files changed

+4
-1
lines changed

4 files changed

+4
-1
lines changed

.codespell-dictionary

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
arrpw->arrow

.codespellrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,6 @@
1616
# under the License.
1717

1818
[codespell]
19+
dictionary = .codespell-dictionary,-
1920
ignore-words = .codespell-ignore
2021
skip = go/adbc/go.sum

csharp/src/Drivers/FlightSql/FlightSqlDriver.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
namespace Apache.Arrow.Adbc.Drivers.FlightSql
2121
{
2222
/// <summary>
23-
/// Represents an Arrpw Flight SQL driver for connecting to
23+
/// Represents an Arrow Flight SQL driver for connecting to
2424
/// data sources that support Arrow Flight SQL.
2525
/// </summary>
2626
public class FlightSqlDriver : AdbcDriver

dev/release/rat_exclude_files.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
*.json
22
*.Rproj
33
*.Rd
4+
.codespell-dictionary
45
.codespell-ignore
56
c/subprojects/fmt.wrap
67
c/subprojects/gtest.wrap

0 commit comments

Comments
 (0)