1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-01 14:15:33 +02:00

gcc: fix typo (#9871)

This commit is contained in:
K.B.Dharun Krishna 2023-02-27 03:03:25 +05:30 committed by GitHub
parent 16d7c72f7c
commit 3646aba830
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,7 +3,7 @@
> Preprocess and compile C and C++ source files, then assemble and link them together.
> More information: <https://gcc.gnu.org>.
- Compile multiple source files into executable:
- Compile multiple source files into an executable:
`gcc {{path/to/source1.c path/to/source2.c ...}} -o {{path/to/output_executable}}`