diff --git a/docs/guides/using-go-and-pgx.rst b/docs/guides/using-go-and-pgx.rst index f24faaf2a0..636434d3af 100644 --- a/docs/guides/using-go-and-pgx.rst +++ b/docs/guides/using-go-and-pgx.rst @@ -66,7 +66,7 @@ Generating the code will now give you pgx-compatible database access methods. .. code-block:: bash - sqlc generate --experimental + sqlc generate ^^^^^^^^^^^^^^^^^^^^^^^^^^ Generated code walkthrough diff --git a/scripts/regenerate/main.go b/scripts/regenerate/main.go index 07b3ce46a0..3bb2ba3e66 100644 --- a/scripts/regenerate/main.go +++ b/scripts/regenerate/main.go @@ -55,7 +55,7 @@ func regenerate(dir string) error { expectFailure = true } - cmd := exec.Command("sqlc-dev", "generate", "--experimental") + cmd := exec.Command("sqlc-dev", "generate") cmd.Dir = cwd out, failed := cmd.CombinedOutput() if failed != nil && !expectFailure {