Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/gogf/gf
Browse files Browse the repository at this point in the history
  • Loading branch information
gqcn committed Mar 31, 2022
2 parents 05508e4 + 126a81d commit b4184e4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
with:
timezoneLinux: "Asia/Shanghai"

- name: Checkout Repositary
- name: Checkout Repository
uses: actions/checkout@v2

- name: Set Up Go
Expand Down
2 changes: 1 addition & 1 deletion os/gfpool/gfpool_pool.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ func (p *Pool) File() (*File, error) {
// It firstly checks using !p.init.Val() for performance purpose.
if !p.init.Val() && p.init.Cas(false, true) {
_, _ = gfsnotify.Add(f.path, func(event *gfsnotify.Event) {
// If teh file is removed or renamed, recreates the pool by increasing the pool id.
// If the file is removed or renamed, recreates the pool by increasing the pool id.
if event.IsRemove() || event.IsRename() {
// It drops the old pool.
p.id.Add(1)
Expand Down
2 changes: 1 addition & 1 deletion protocol/goai/testdata/example.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ paths:
tags:
- pet
summary: Finds Pets by tags
description: Muliple tags can be provided with comma separated strings. Use tag1,
description: Multiple tags can be provided with comma separated strings. Use tag1,
tag2, tag3 for testing.
operationId: findPetsByTags
parameters:
Expand Down

0 comments on commit b4184e4

Please sign in to comment.