Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
xhd2015 committed Nov 2, 2024
1 parent 0851e4e commit 847f7f1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cmd/xgo/runtime_gen/trap/trap.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ func __xgo_link_on_init_finished(f func()) {
// Skip serves as mark to tell xgo not insert
// trap instructions for the function that
// calls Skip()
// NOTE: the function body is intenionally leave empty
// NOTE: the function body is intentionally leave empty
// as trap.Skip() is just a mark that makes
// sense at compile time.
func Skip() {}
Expand Down
6 changes: 3 additions & 3 deletions cmd/xgo/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ package main
import "fmt"

// REVISION and NUMBER are auto updated when run 'git commit'
// VERSION is manully updated when needed a new tag
// VERSION is manually updated when needed a new tag
// see also runtime/core/version.go
const VERSION = "1.0.49"
const REVISION = "1d8b33c2ca5fafec9439a1ec7adcdc591db705b9+1"
const NUMBER = 311
const REVISION = "0851e4edf6d78c3da276a587656c19e489590d3f+1"
const NUMBER = 312

// the matching runtime/core's version
// manually updated
Expand Down
2 changes: 1 addition & 1 deletion runtime/trap/trap.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ func __xgo_link_on_init_finished(f func()) {
// Skip serves as mark to tell xgo not insert
// trap instructions for the function that
// calls Skip()
// NOTE: the function body is intenionally leave empty
// NOTE: the function body is intentionally leave empty
// as trap.Skip() is just a mark that makes
// sense at compile time.
func Skip() {}
Expand Down

0 comments on commit 847f7f1

Please sign in to comment.