Skip to content
This repository has been archived by the owner on Jun 10, 2020. It is now read-only.

Commit

Permalink
Fix spelling after merge (#943)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitry-Matveev authored and cijothomas committed Jul 22, 2019
1 parent 99a2576 commit 34ba107
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions Schema/PublicSchema/ContextTagKeys.bond
Expand Up @@ -70,7 +70,7 @@ struct ContextTagKeys
[MaxStringLength("1024")]
505: string UserAccountId = "ai.user.accountId";

[Description("The browser's user agent string as reported by the browser. This property will be used to extract informaiton regarding the customer's browser but will not be stored. Use custom properties to store the original user agent.")]
[Description("The browser's user agent string as reported by the browser. This property will be used to extract information regarding the customer's browser but will not be stored. Use custom properties to store the original user agent.")]
[MaxStringLength("2048")]
510: string UserAgent = "ai.user.userAgent";

Expand All @@ -86,7 +86,7 @@ struct ContextTagKeys
[MaxStringLength("256")]
705: string CloudRole = "ai.cloud.role";

[Description("Name of the instance where the application is running. Computer name for on-premisis, instance name for Azure.")]
[Description("Name of the instance where the application is running. Computer name for on-premises, instance name for Azure.")]
[MaxStringLength("256")]
715: string CloudRoleInstance = "ai.cloud.roleInstance";

Expand Down
2 changes: 1 addition & 1 deletion Schema/PublicSchema/MessageData.bond
Expand Up @@ -3,7 +3,7 @@ import "SeverityLevel.bond"

namespace AI

[Description("Instances of Message represent printf-like trace statements that are text-searched. Log4Net, NLog and other text-based log file entries are translated into intances of this type. The message does not have measurements.")]
[Description("Instances of Message represent printf-like trace statements that are text-searched. Log4Net, NLog and other text-based log file entries are translated into instances of this type. The message does not have measurements.")]
struct MessageData
: Domain
{
Expand Down
2 changes: 1 addition & 1 deletion Schema/PublicSchema/RemoteDependencyData.bond
Expand Up @@ -26,7 +26,7 @@ struct RemoteDependencyData
[ActAsRequired("Renaming value to duration.")]
61: required string duration;

[Description("Indication of successfull or unsuccessfull call.")]
[Description("Indication of successful or unsuccessful call.")]
120: bool success = true;

[MaxStringLength("8192")]
Expand Down
2 changes: 1 addition & 1 deletion Schema/PublicSchema/RequestData.bond
Expand Up @@ -21,7 +21,7 @@ struct RequestData
[Description("Result of a request execution. HTTP status code for HTTP requests.")]
60: required string responseCode;

[Description("Indication of successfull or unsuccessfull call.")]
[Description("Indication of successful or unsuccessful call.")]
70: required bool success;

[MaxStringLength("1024")]
Expand Down
Expand Up @@ -115,7 +115,7 @@ public partial class ContextTagKeys
[global::Bond.Id(505)]
public string UserAccountId { get; set; }

[global::Bond.Attribute("Description", "The browser's user agent string as reported by the browser. This property will be used to extract informaiton regarding the customer's browser but will not be stored. Use custom properties to store the original user agent.")]
[global::Bond.Attribute("Description", "The browser's user agent string as reported by the browser. This property will be used to extract information regarding the customer's browser but will not be stored. Use custom properties to store the original user agent.")]
[global::Bond.Attribute("MaxStringLength", "2048")]
[global::Bond.Id(510)]
public string UserAgent { get; set; }
Expand All @@ -135,7 +135,7 @@ public partial class ContextTagKeys
[global::Bond.Id(705)]
public string CloudRole { get; set; }

[global::Bond.Attribute("Description", "Name of the instance where the application is running. Computer name for on-premisis, instance name for Azure.")]
[global::Bond.Attribute("Description", "Name of the instance where the application is running. Computer name for on-premises, instance name for Azure.")]
[global::Bond.Attribute("MaxStringLength", "256")]
[global::Bond.Id(715)]
public string CloudRoleInstance { get; set; }
Expand Down
Expand Up @@ -28,7 +28,7 @@ namespace AI
{
using System.Collections.Generic;

[global::Bond.Attribute("Description", "Instances of Message represent printf-like trace statements that are text-searched. Log4Net, NLog and other text-based log file entries are translated into intances of this type. The message does not have measurements.")]
[global::Bond.Attribute("Description", "Instances of Message represent printf-like trace statements that are text-searched. Log4Net, NLog and other text-based log file entries are translated into instances of this type. The message does not have measurements.")]
[global::Bond.Schema]
[System.CodeDom.Compiler.GeneratedCode("gbc", "0.10.1.0")]
public partial class MessageData
Expand Down
Expand Up @@ -59,7 +59,7 @@ public partial class RemoteDependencyData
[global::Bond.Id(61), global::Bond.Required]
public string duration { get; set; }

[global::Bond.Attribute("Description", "Indication of successfull or unsuccessfull call.")]
[global::Bond.Attribute("Description", "Indication of successful or unsuccessful call.")]
[global::Bond.Id(120)]
public bool success { get; set; }

Expand Down
Expand Up @@ -58,7 +58,7 @@ public partial class RequestData
[global::Bond.Id(60), global::Bond.Required]
public string responseCode { get; set; }

[global::Bond.Attribute("Description", "Indication of successfull or unsuccessfull call.")]
[global::Bond.Attribute("Description", "Indication of successful or unsuccessful call.")]
[global::Bond.Id(70), global::Bond.Required]
public bool success { get; set; }

Expand Down

0 comments on commit 34ba107

Please sign in to comment.