Skip to content

Commit 07b1ba5

Browse files
committed
docs: add CI spell check
1 parent cb4296c commit 07b1ba5

27 files changed

+64
-32
lines changed

.github/workflows/spelling.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Spelling - test spelling with Typos crate
2+
3+
permissions:
4+
contents: read
5+
6+
on:
7+
push:
8+
branches: [ "main" ]
9+
pull_request:
10+
branches: [ "main" ]
11+
12+
env:
13+
CLICOLOR: 1
14+
15+
jobs:
16+
spelling:
17+
runs-on: ubuntu-latest
18+
steps:
19+
- name: Checkout Actions Repository
20+
uses: actions/checkout@v4
21+
- name: Spell Check Repo
22+
uses: crate-ci/typos@v1.34.0

.typos.toml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[default.extend-words]
2+
Beng = "Beng"
3+
Caf = "Caf"
4+
Fo = "Fo"
5+
Formattings = "Formattings"
6+
nam = "nam"
7+
ODER = "ODER"
8+
ser = "ser"
9+
SOMME = "SOMME"
10+
ths = "ths"

LICENSE_Artistic_Perl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ products derived from this software without specific prior written permission.
125125

126126
10. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
127127
IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
128-
WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
128+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
129129

130130
The End
131131

examples/chart_combined.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@
103103
$column_chart2->set_x_axis( name => 'Test number' );
104104
$column_chart2->set_y_axis( name => 'Sample length (mm)' );
105105

106-
# Note: the y2 properites are on the secondary chart.
106+
# Note: the y2 properties are on the secondary chart.
107107
$line_chart2->set_y2_axis( name => 'Target length (mm)' );
108108

109109

examples/right_to_left.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#######################################################################
44
#
55
# Example of how to change the default worksheet direction from
6-
# left-to-right to right-to-left as required by some eastern verions
6+
# left-to-right to right-to-left as required by some eastern versions
77
# of Excel.
88
#
99
# Copyright 2000-2025, John McNamara, jmcnamara@cpan.org

examples/sensitivity_label.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@
112112
#
113113
#
114114
# Once you have identified the necessary metadata you can add it to a new
115-
# docuemnt as shown below.
115+
# document as shown below.
116116
#
117117

118118
use strict;

examples/unicode_koi8r.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Sample encoded text borrowed from Sean Burke's Pod::Simple distro.
55
#
6-
# The text is some Russina in KOI8-R.
6+
# The text is some Russian in KOI8-R.
77
#
88
# See the unicode_koi8r.pl example.
99
#

examples/unicode_shift_jis.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# A simple example of converting some Unicode text to an Excel file using
66
# Excel::Writer::XLSX.
77
#
8-
# This example generates some Japenese text from a file with Shift-JIS
8+
# This example generates some Japanese text from a file with Shift-JIS
99
# encoded text.
1010
#
1111
# Copyright 2000-2025, John McNamara, jmcnamara@cpan.org

lib/Excel/Writer/XLSX/Chart.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9459,7 +9459,7 @@ In this case it is just necessary to add a C<y2_axis> parameter to the series an
94599459
94609460
...
94619461
9462-
# Note: the y2 properites are on the secondary chart.
9462+
# Note: the y2 properties are on the secondary chart.
94639463
$line_chart2->set_y2_axis( name => 'Target length (mm)' );
94649464
94659465

lib/Excel/Writer/XLSX/Chart/Scatter.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ sub new {
4040
$self->{_subtype} = $self->{_subtype} || 'marker_only';
4141
$self->{_cross_between} = 'midCat';
4242
$self->{_horiz_val_axis} = 0;
43-
$self->{_val_axis_postion} = 'b';
43+
$self->{_val_axis_position} = 'b';
4444
$self->{_smooth_allowed} = 1;
4545
$self->{_requires_category} = 1;
4646

0 commit comments

Comments
 (0)