Skip to content

Commit

Permalink
docs: update README
Browse files Browse the repository at this point in the history
  • Loading branch information
dongwlin committed Aug 24, 2024
1 parent 616174a commit 9aa0925
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ func NewMyRec() maa.CustomRecognizer {

func (m MyRec) Analyze(syncCtx maa.SyncContext, img image.Image, taskName, RecognitionParam string) (maa.AnalyzeResult, bool) {
return maa.AnalyzeResult{
Box: buffer.Rect{0, 0, 100, 100},
Box: maa.Rect{0, 0, 100, 100},
Detail: "Hello World!",
}, true
}
Expand Down
2 changes: 1 addition & 1 deletion README_zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ func NewMyRec() maa.CustomRecognizer {

func (m MyRec) Analyze(syncCtx maa.SyncContext, img image.Image, taskName, RecognitionParam string) (maa.AnalyzeResult, bool) {
return maa.AnalyzeResult{
Box: buffer.Rect{0, 0, 100, 100},
Box: maa.Rect{0, 0, 100, 100},
Detail: "Hello World!",
}, true
}
Expand Down

0 comments on commit 9aa0925

Please sign in to comment.