Skip to content

Commit f10b1c4

Browse files
committed
fix off-by-one whitespace
1 parent 4e7c44f commit f10b1c4

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

docs/source/cpp/build_system.rst

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -156,15 +156,15 @@ into an executable linked with the Arrow C++ shared library:
156156

157157
.. code-block:: meson
158158
159-
project('my-example-project', 'cpp')
159+
project('my-example-project', 'cpp')
160160
161-
arrow_dep = dependency('arrow')
161+
arrow_dep = dependency('arrow')
162162
163-
executable(
164-
'my_example',
165-
sources: ['my_example.cc'],
166-
dependencies: [arrow_dep],
167-
)
163+
executable(
164+
'my_example',
165+
sources: ['my_example.cc'],
166+
dependencies: [arrow_dep],
167+
)
168168
169169
To setup and compile, run the following commands from your project root:
170170

@@ -211,18 +211,18 @@ Meson to build the compute library while compiling a local copy of Arrow:
211211

212212
.. code-block:: meson
213213
214-
project('my-example-project', 'cpp')
214+
project('my-example-project', 'cpp')
215215
216-
arrow_compute_dep = dependency(
217-
'arrow-compute',
218-
default_options: ['compute=enabled'],
219-
)
216+
arrow_compute_dep = dependency(
217+
'arrow-compute',
218+
default_options: ['compute=enabled'],
219+
)
220220
221-
executable(
222-
'my_example',
223-
sources: ['my_example.cc'],
224-
dependencies: [arrow_compute_dep],
225-
)
221+
executable(
222+
'my_example',
223+
sources: ['my_example.cc'],
224+
dependencies: [arrow_compute_dep],
225+
)
226226
227227
pkg-config
228228
==========

0 commit comments

Comments
 (0)