From 8268c26d8baf982fef37f16b64053a60881d397e Mon Sep 17 00:00:00 2001 From: Gani Georgiev Date: Mon, 1 Aug 2022 22:30:14 +0300 Subject: [PATCH] fixed README typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e60241456..f74af1b8b 100644 --- a/README.md +++ b/README.md @@ -91,7 +91,7 @@ Running/building the application is the same as for any other Go program, aka. j **PocketBase embeds SQLite, but doesn't require CGO.** -If CGO is enabled, it will use [mattn/go-sqlite3](https://pkg.go.dev/github.com/mattn/go-sqlite3) driver, otherwise - [modernc.org/sqlite](https://pkg.go.dev/modernc.org/sqlite). You can enable and disable CGO by setting the `CGO_ENABLED` enviroment variable to `1` or `0` respectively. +If CGO is enabled, it will use [mattn/go-sqlite3](https://pkg.go.dev/github.com/mattn/go-sqlite3) driver, otherwise - [modernc.org/sqlite](https://pkg.go.dev/modernc.org/sqlite). You can enable and disable CGO by setting the `CGO_ENABLED` environment variable to `1` or `0` respectively. Enable CGO only if you really need to squeeze the read/write query performance at the expense of complicating cross compilation.