diff --git a/src/content/docs/apm/agents/net-agent/custom-instrumentation/create-transactions-xml-net.mdx b/src/content/docs/apm/agents/net-agent/custom-instrumentation/create-transactions-xml-net.mdx index 5d6379c4864..24edbe271d3 100644 --- a/src/content/docs/apm/agents/net-agent/custom-instrumentation/create-transactions-xml-net.mdx +++ b/src/content/docs/apm/agents/net-agent/custom-instrumentation/create-transactions-xml-net.mdx @@ -119,7 +119,7 @@ To create a custom instrumentation file: * `NameSpace.ClassName`: The fully-qualified class name that contains the trigger method. * `MethodName`: The exact name of the trigger method. * `minVersion`: Optional (you can remove it). The minimum assembly version to instrument (inclusive). If omitted, the minimum version is considered to be 0. Requires agent 10.6.0 or higher. - * `maxVersion`: Optional (you can remove it). The maximum assembly version to instrument (exclusive). If ommitted, there is no maximum version. Requires agent 10.6.0 or higher. + * `maxVersion`: Optional (you can remove it). The maximum assembly version to instrument (exclusive). If omitted, there is no maximum version. Requires agent 10.6.0 or higher. 2. Adding additional methods must include the `"NewRelic.Agent.Core.Tracer.Factories.BackgroundThreadTracerFactory"` attribute to be defined as a transaction. Tags without this attribute will [add detail to existing transactions](/docs/agents/net-agent/custom-instrumentation/add-detail-transactions-xml-net) only. 3. Optional: To check if the XML file is formatted correctly, you can check it against the XSD (located at `C:\ProgramData\New Relic\.NET Agent\Extensions\extension.xsd`) using any XSD validator.