Skip to content

Commit

Permalink
Correct Intellisense for JArray and jObject
Browse files Browse the repository at this point in the history
  • Loading branch information
TheCakeMonster committed Oct 10, 2024
1 parent 04f6e71 commit 2fbde33
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion PanoramicData.NCalcExtensions/Extensions/NewJArray.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace PanoramicData.NCalcExtensions.Extensions;
/// </summary>
public partial interface IFunctionPrototypes
{
[DisplayName("newJArray")]
[DisplayName("jArray")]
[Description("Creates and returns a new JArray instance with the given items.")]
JArray NewJArray(
[Description("Name of the data type.")]
Expand Down
2 changes: 1 addition & 1 deletion PanoramicData.NCalcExtensions/Extensions/NewJObject.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace PanoramicData.NCalcExtensions.Extensions;
/// </summary>
public partial interface IFunctionPrototypes
{
[DisplayName("newJObject")]
[DisplayName("jObject")]
[Description("Creates and returns a new JObject instance with the given properties.")]
JArray NewJObject(
[Description("Interlaced keys and values. You must provide an even number of parameters, and names must evaluate to strings.")]
Expand Down

0 comments on commit 2fbde33

Please sign in to comment.