File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed
datafusion/functions/src/datetime Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -781,3 +781,11 @@ jobs:
781781 - name : Check datafusion-proto
782782 working-directory : datafusion/proto
783783 run : cargo msrv --output-format json --log-target stdout verify
784+ typos :
785+ name : Spell Check with Typos
786+ runs-on : ubuntu-latest
787+ steps :
788+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
789+ with :
790+ persist-credentials : false
791+ - uses : crate-ci/typos@master
Original file line number Diff line number Diff line change @@ -191,7 +191,7 @@ impl ScalarUDFImpl for DateTruncFunc {
191191 // fast path for fine granularities
192192 if matches ! (
193193 granularity. as_str( ) ,
194- // For morden timezones, it's correct to truncate "minute" in this way.
194+ // For modern timezones, it's correct to truncate "minute" in this way.
195195 // Both datafusion and arrow are ignoring historical timezone's non-minute granularity
196196 // bias (e.g., Asia/Kathmandu before 1919 is UTC+05:41:16).
197197 "second" | "minute" | "millisecond" | "microsecond"
You can’t perform that action at this time.
0 commit comments