This is an automated email from the ASF dual-hosted git repository.
paleolimbot pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-nanoarrow.git
The following commit(s) were added to refs/heads/main by this push:
new 059a5a5 Add missing comma (#193)
059a5a5 is described below
commit 059a5a5500a59ab102ce95c51fd25e24c5edf7b9
Author: Dirk Eddelbuettel <[email protected]>
AuthorDate: Tue May 16 13:39:33 2023 -0500
Add missing comma (#193)
Thanks for adding the nice example. While perusing it (and I need to
read it fully) I spotted a simple missing comma in the enumeration of
possible install commands. That's makes it possibly to most
insignificant PR ever but hey we believe in incremental fixes. Feel free
to close it if you'd rather address it elsewhere / as part of a larger
commit.
---
docs/source/getting-started.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/source/getting-started.md b/docs/source/getting-started.md
index 78eb798..96c0478 100644
--- a/docs/source/getting-started.md
+++ b/docs/source/getting-started.md
@@ -71,7 +71,7 @@ this tutorial, we will use
[VSCode](https://code.visualstudio.com/) and
[CMake](https://cmake.org/). You'll need both installed to follow along:
VSCode can be downloaded from the official site for most platforms;
CMake is typically installed via your favourite package manager
-(e.g., `brew install cmake`, `apt-get install cmake` `dnf install cmake`,
+(e.g., `brew install cmake`, `apt-get install cmake`, `dnf install cmake`,
etc.). You will also need a C and C++ compiler: on MacOS these can be installed
using `xcode-select --install`; on Linux you will need the packages that
provide
`gcc`, `g++`, and `make` (e.g., `apt-get install build-essential`); on Windows