Skip to content

Commit 0e24069

Browse files
authored
Merge pull request MicrosoftDocs#319 from nschonni/fix--MD038/no-space-in-code
fix: MD038/no-space-in-code
2 parents fcdefac + 000f6ba commit 0e24069

File tree

7 files changed

+15
-10
lines changed

7 files changed

+15
-10
lines changed

powerapps-docs/developer/common-data-service/org-service/generate-early-bound-classes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ The classes created by the code generation tool are designed to be built into a
3737
The following lists assemblies that must be referenced in your project when you use the generated code file.
3838

3939
- `Microsoft.Crm.Sdk.Proxy.dll`
40-
- `Microsoft.Xrm.Sdk.dll `
40+
- `Microsoft.Xrm.Sdk.dll`
4141

4242
These assemblies are part of the [Microsoft.CrmSdk.CoreAssemblies](https://www.nuget.org/packages/Microsoft.CrmSdk.CoreAssemblies/) NuGet package. Use this Nuget packages to add these assemblies to your Visual Studio project.
4343

powerapps-docs/developer/common-data-service/tutorial-write-plug-in.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ In Visual Studio, press **F6** to build the assembly. Verify that it compiles wi
209209
1. Click **OK** to close the **Create Strong Name Key** dialog.
210210
1. In the project properties **Build** tab, verify that the **Configuration** is set to **Debug**.
211211
1. Press **F6** to build the plug-in again.
212-
1. Using windows explorer, find the built plug-in at:` \bin\Debug\BasicPlugin.dll`.
212+
1. Using windows explorer, find the built plug-in at: `\bin\Debug\BasicPlugin.dll`.
213213

214214
> [!NOTE]
215215
> Build the assembly using **Debug** configuration because you will use the Plug-in profiler to debug it in a later tutorial. Before you include a plug-in with your solution, you should build it using the release configuration.

powerapps-docs/developer/common-data-service/use-change-tracking-synchronize-data-external-systems.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The change tracking feature in Common Data Service provides a way to keep the da
2222
<a name="BKMK_enable"></a>
2323
## Enable change tracking for an entity
2424

25-
Before retrieving the changes for an entity, make sure that the change tracking feature is enabled for that entity. This feature can be enabled by using the customization user interface (UI) or programmatically by setting the <xref:Microsoft.Xrm.Sdk.Metadata.EntityMetadata.ChangeTrackingEnabled> property to `True`. Annotation `Org.OData.Capabilities.V1.ChangeTracking ` gets added to entity sets that have change tracking enabled. To see annotations in entity metadata, do
25+
Before retrieving the changes for an entity, make sure that the change tracking feature is enabled for that entity. This feature can be enabled by using the customization user interface (UI) or programmatically by setting the <xref:Microsoft.Xrm.Sdk.Metadata.EntityMetadata.ChangeTrackingEnabled> property to `True`. Annotation `Org.OData.Capabilities.V1.ChangeTracking` gets added to entity sets that have change tracking enabled. To see annotations in entity metadata, do
2626

2727
```http
2828
GET [Organization URI]/api/data/v9.0/$metadata?annotations=true

powerapps-docs/developer/model-driven-apps/create-manage-model-driven-apps-using-code.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,8 +225,9 @@ Accept: application/json
225225

226226
To disassociate a security role from a Model-driven app, you use the DELETE request with the same navigation property. For example:
227227

228-
`DELETE [Organization URI]/api/data/v9.0/appmodules(dd621d4a-d898-e711-80e7-00155db763be)/appmoduleroles_association/$ref?$id=[Organization URI]/api/data/v9.0/roles(<roleId)
229-
`
228+
```
229+
DELETE [Organization URI]/api/data/v9.0/appmodules(dd621d4a-d898-e711-80e7-00155db763be)/appmoduleroles_association/$ref?$id=[Organization URI]/api/data/v9.0/roles(<roleId)
230+
```
230231

231232
## Manage your model-driven apps and its components
232233

powerapps-docs/maker/canvas-apps/controls/control-power-bi-tile.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,15 @@ By passing a single parameter from the app, you can filter the results that appe
3838

3939
To pass a single filter value, modify the value of the **TileURL** property, which follows this syntax:
4040

41-
```"https://app.powerbi.com/embed?dashboardId=<DashboardID>&tileId=<TileID>&config=<SomeHash>" ```
41+
```
42+
"https://app.powerbi.com/embed?dashboardId=<DashboardID>&tileId=<TileID>&config=<SomeHash>"
43+
```
4244

4345
To that value, append this syntax:
4446

45-
```&$filter=<TableName>/<ColumnName> eq '<Value>' ```
47+
```
48+
&$filter=<TableName>/<ColumnName> eq '<Value>'
49+
```
4650

4751
The parameter will filter a value in the dataset of the report where the tile originates.
4852

powerapps-docs/maker/common-data-service/virtual-entity-odata-provider-requirements.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ The following table lists the OData Entity Data Model (EDM) data type mappings w
5252

5353
### OData EDM data types that are not supported for mapping with virtual entities
5454

55-
- `Edm.Binary `
55+
- `Edm.Binary`
5656
- `Edm.Time`
57-
- `Edm.Float `
57+
- `Edm.Float`
5858
- `Edm.Single`
5959
- `Edm.Int16`
6060
- `Edm.Byte`

powerapps-docs/maker/model-driven-apps/create-edit-web-resources.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Web resources are virtual files stored in the system. Each web resource has a un
3939

4040
For example, if you create an HTML page as a web resource named “new_myWebResource.htm”, you could open that page in a browser using a URL like this:
4141

42-
`<base URL>/WebResources/new_myWebResource.htm `
42+
`<base URL>/WebResources/new_myWebResource.htm`
4343

4444
where *\<base URL>* is the part of the URL you use to view apps that ends in `dynamics.com`. Because the web resource is data in the system, only licensed users for your organization can access them this way. Normally, web resources are included in forms rather than referenced directly. The most common usage is to provide JavaScript libraries for form scripts.
4545

0 commit comments

Comments
 (0)