From 7caee25bb32d5f3ea2c6415bbc1cc92cb91763f5 Mon Sep 17 00:00:00 2001 From: Saurabh Kumar <151380951+kmr-srbh@users.noreply.github.com> Date: Fri, 16 Feb 2024 15:34:52 +0530 Subject: [PATCH] Fixed a typo Replaced the mistakenly added `gcc` with `g++`. --- doc/src/installation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/src/installation.md b/doc/src/installation.md index b5dcc9da6c..e9db50cf92 100644 --- a/doc/src/installation.md +++ b/doc/src/installation.md @@ -12,10 +12,10 @@ Follow the steps below to install and run LPython on Linux, Windows or macOS. - ### Set up your system - Linux - - Make sure you have `gcc` and `cmake` installed. If not, install them using the below command: + - Make sure you have `g++` and `cmake` installed. If not, install them using the below command: ```bash - sudo apt-get install gcc cmake + sudo apt-get install g++ cmake ``` - Run the following command to install the build dependencies: