Skip to content

Commit 82a68ea

Browse files
committed
typo
1 parent c26af0d commit 82a68ea

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ border areas.
181181
You can observe points with different outcomes on this [page][points_not_equal].
182182

183183
If a slightly longer initialization time is tolerable, the
184-
[compressed dataset (~5MB)][compressd-link] derived from the lightweight dataset
184+
[compressed dataset (~5MB)][compressed-link] derived from the lightweight dataset
185185
will be **more suitable for binary distribution.**
186186

187187
The [pre-indexed dataset (~1.78MB)][preindex-link] consists of multiple tiles.
@@ -192,7 +192,7 @@ reduce execution times of the raycasting algorithm.
192192
[full-link]: https://github.com/ringsaturn/tzf-rel/blob/main/combined-with-oceans.pb
193193
[lite-link]: https://github.com/ringsaturn/tzf-rel/blob/main/combined-with-oceans.reduce.pb
194194
[preindex-link]: https://github.com/ringsaturn/tzf-rel/blob/main/combined-with-oceans.reduce.preindex.pb
195-
[compressd-link]: https://github.com/ringsaturn/tzf-rel/blob/main/combined-with-oceans.reduce.compress.pb
195+
[compressed-link]: https://github.com/ringsaturn/tzf-rel/blob/main/combined-with-oceans.reduce.compress.pb
196196
[points_not_equal]: https://geojson.io/#id=gist:ringsaturn/2d958e7f0a279a7411c04907f255955a
197197

198198
I have written an article about the history of tzf, its Rust port, and its Rust

gen/go/tzf/v1/tzinfo.pb.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pb/tzf/v1/tzinfo.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ syntax = "proto3";
66
// [tzf-rel-lite](https://github.com/ringsaturn/tzf-rel-lite) are defined in this
77
// directory.
88
//
9-
// Avaliable docs:
9+
// Available docs:
1010
//
1111
// - [`tzf.v1` on buf.build](https://buf.build/ringsaturn/tzf/docs/main:tzf.v1)
1212
// - [Plain HTML](https://ringsaturn.github.io/tzf/pb.html)

preindex/exclude.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ var (
1212
excludesFinder *polyf.F[any]
1313

1414
//go:embed exclude.geojson
15-
exludeGeoJSONBytes []byte
15+
excludeGeoJSONBytes []byte
1616
)
1717

1818
func init() {
1919
boundaryFile := &featurecollection.BoundaryFile[any]{}
20-
err := json.Unmarshal(exludeGeoJSONBytes, boundaryFile)
20+
err := json.Unmarshal(excludeGeoJSONBytes, boundaryFile)
2121
if err != nil {
2222
panic(err)
2323
}

tzf_default_finder_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ func BenchmarkDefaultFinder_GetTimezoneName_Random_WorldCities(b *testing.B) {
5959
}
6060
}
6161

62-
func Test_DefaultFinder_GetTimezoneName_Random_WorldCities_Alll(t *testing.T) {
62+
func Test_DefaultFinder_GetTimezoneName_Random_WorldCities_All(t *testing.T) {
6363
wri := bytes.NewBufferString("")
6464
lotsa.Output = wri
6565
lotsa.Ops(len(gocitiesjson.Cities), runtime.NumCPU(), func(i, _ int) {

tzf_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ func ExampleFinder_TimezoneNames() {
8181
fmt.Println(finder.TimezoneNames())
8282
}
8383

84-
func Test_Finder_GetTimezoneName_Random_WorldCities_Alll(t *testing.T) {
84+
func Test_Finder_GetTimezoneName_Random_WorldCities_All(t *testing.T) {
8585
wri := bytes.NewBufferString("")
8686
lotsa.Output = wri
8787
lotsa.Ops(len(gocitiesjson.Cities), runtime.NumCPU(), func(i, _ int) {

0 commit comments

Comments
 (0)