Skip to content

Commit 26999a3

Browse files
Minor corrections
1 parent 2bac9c9 commit 26999a3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/getting_started/content_pipeline/content_builder_project.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ This is the default (recommended) layout for a Content Builder project, but you
107107
108108
## Basic Builder Project Structure
109109

110-
The default `Builder.cs` file looks like this, which contains everything needed to build all content in the designated Assets/Content folder using the default [Importers]() and [Processors]() (how MonoGame compiles content) into processed `.XNB` files for consumption by your runtime project:
110+
The default `Builder.cs` file looks like this, which contains everything needed to build all content in the designated Assets/Content folder using the default [Importers and Processors](/articles/getting_to_know/whatis/content_pipeline/CP_StdImpsProcs) (how MonoGame compiles content) into processed `.XNB` files for consumption by your runtime project:
111111

112112
```csharp
113113
using Microsoft.Xna.Framework.Content.Pipeline;
@@ -258,7 +258,7 @@ Any additional `ContentCollection` commands provided after the global include si
258258
**Important:** Rules are evaluated in order, and the **last matching rule wins**!
259259

260260
> [!NOTE]
261-
> Rules are simply update the processing order for each file. Whatever the last rule applied to affect the file/folder definition is, is the final state in which a file will be processed. If you are not getting the output you expect, you can output the collection to file and examine it for reference, then check WHY a files was in its final state.
261+
> Rules simply update the processing order for each file. Whatever the last rule applied to affect the file/folder definition is, is the final state in which a file will be processed. If you are not getting the output you expect, you can output the collection to file and examine it for reference, then check WHY a file was in its final state.
262262
263263
For example, the following rule order shows that all `png` files are included for processing initially, but then a later rule updates this and specifically excludes `png` files from processing. The result, no `png` files are processed and they are ignored:
264264

0 commit comments

Comments
 (0)