Skip to content

Commit

Permalink
fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
matt2e committed Jun 11, 2024
1 parent c13df8f commit d5ee26f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions go-runtime/compile/schema.go
Original file line number Diff line number Diff line change
Expand Up @@ -403,9 +403,9 @@ func visitCallExpr(pctx *parseContext, node *ast.CallExpr, stack []ast.Node) {
}

// validateCallExpr validates all function calls
// checks if the is directly:
// - calling external verbs
// - publishing to an external module's topic
// checks if the function call is:
// - a direct verb call to an external module
// - a direct publish call on an external module's topic
func validateCallExpr(pctx *parseContext, node *ast.CallExpr) {
selExpr, ok := node.Fun.(*ast.SelectorExpr)
if !ok {
Expand Down

0 comments on commit d5ee26f

Please sign in to comment.