Skip to content

Commit 8c29125

Browse files
authored
Merge pull request #10235 from tetrapod00/builtin-built-in
Use "built-in" and "built into", avoid "builtin", "built in", and "built-in to"
2 parents 19804cc + 76bcb14 commit 8c29125

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

contributing/development/compiling/introduction_to_the_buildsystem.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ source to initialize any SCons build options passed via the command line:
328328
use_llvm = "yes"
329329
extra_suffix = "game_title"
330330
331-
You can also disable some of the builtin modules before compiling, saving some
331+
You can also disable some of the built-in modules before compiling, saving some
332332
time it takes to build the engine. See :ref:`doc_optimizing_for_size` page for more details.
333333

334334
.. seealso::

contributing/documentation/docs_image_guidelines.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ make an image look clean. Below is an example of good cropping.
6363
.. image:: img/cropped_image.webp
6464

6565
For cropping Krita is the recommended program. While some screenshot programs do
66-
have cropping built in it's not always easy to get something precise. And while
66+
have cropping built-in it's not always easy to get something precise. And while
6767
Krita is designed as a painting program the cropping tool gives you pixel precision
6868
by default. Of course, feel free to use a different program you are familiar with.
6969

tutorials/2d/using_tilemaps.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Specifying the TileSet in the TileMapLayer
2525
------------------------------------------
2626

2727
If you've followed the previous page on :ref:`doc_using_tilesets`, you should
28-
have a TileSet resource that is built-in to the TileMapLayer node. This is good for
28+
have a TileSet resource that is built into the TileMapLayer node. This is good for
2929
prototyping, but in a real world project, you will generally have multiple
3030
levels reusing the same tileset.
3131

tutorials/editor/managing_editor_features.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Introduction
1111
In certain situations, it may be desirable to limit what features can be used
1212
in the Godot editor. For example, a UI designer on a team who doesn't need to
1313
see 3D features, or an educator slowly introducing features to students. Godot
14-
has a built in system called "feature profiles" to do this.
14+
has a built-in system called "feature profiles" to do this.
1515

1616
With feature profiles, major features and nodes can be hidden from the editor.
1717
This only hides parts of the interface and does not actually remove support for

tutorials/platform/ios/plugins_for_ios.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,7 @@ On success:
490490
``show_game_center``
491491
~~~~~~~~~~~~~~~~~~~~
492492

493-
Displays the built in Game Center overlay showing leaderboards,
493+
Displays the built-in Game Center overlay showing leaderboards,
494494
achievements, and challenges.
495495

496496
Parameters

tutorials/shaders/compute_shaders.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ careful not to read from an index larger than the size of the buffer.
143143
144144
Finally, we write the ``main`` function which is where all the logic happens. We
145145
access a position in the storage buffer using the ``gl_GlobalInvocationID``
146-
built in variables. ``gl_GlobalInvocationID`` gives you the global unique ID for
146+
built-in variables. ``gl_GlobalInvocationID`` gives you the global unique ID for
147147
the current invocation.
148148

149149
To continue, write the code above into your newly created ``compute_example.glsl``

tutorials/shaders/custom_postprocessing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ For this demo, we will use this :ref:`Sprite <class_Sprite2D>` of a sheep.
5050

5151
Assign a new :ref:`Shader <class_Shader>` to the ``ColorRect``'s
5252
``ShaderMaterial``. You can access the frame's texture and UV with a
53-
``sampler2D`` using ``hint_screen_texture`` and the built in ``SCREEN_UV``
53+
``sampler2D`` using ``hint_screen_texture`` and the built-in ``SCREEN_UV``
5454
uniforms.
5555

5656
Copy the following code to your shader. The code below is a hex pixelization

tutorials/shaders/shader_materials.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Examples of this are:
2323
- Create custom particle code.
2424
- And much more!
2525

26-
Godot provides built in functionality to make frequent operations
26+
Godot provides built-in functionality to make frequent operations
2727
easier. Additionally, Godot's shader editor will detect errors as you
2828
type, so you can see your edited shaders in real-time. It is also
2929
possible to edit shaders using a visual, node-based graph editor.

tutorials/shaders/shader_reference/canvas_item_shader.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ run. Use the ``light_only`` render mode if you only want to see the impact of
271271
lighting on an object; this can be useful when you only want the object visible
272272
where it is covered by light.
273273

274-
If you define a ``light()`` function it will replace the built in light function,
274+
If you define a ``light()`` function it will replace the built-in light function,
275275
even if your light function is empty.
276276

277277
Below is an example of a light shader that takes a CanvasItem's normal map into account:

0 commit comments

Comments
 (0)