Skip to content

Commit

Permalink
docs: change Json to json
Browse files Browse the repository at this point in the history
  • Loading branch information
RealShadowNova committed May 10, 2023
1 parent ef566a1 commit 4f8c019
Show file tree
Hide file tree
Showing 31 changed files with 61 additions and 61 deletions.
2 changes: 1 addition & 1 deletion src/lib/structures/FunctionParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ export namespace FunctionParser {
external: boolean;

/**
* The signature parsers of this function in a Json compatible format.
* The signature parsers of this function in a json compatible format.
* @since 1.0.0
*/
signatures: SignatureParser.Json[];
Expand Down
14 changes: 7 additions & 7 deletions src/lib/structures/NamespaceParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -447,43 +447,43 @@ export namespace NamespaceParser {
external: boolean;

/**
* The class parsers of this namespace in a Json compatible format.
* The class parsers of this namespace in a json compatible format.
* @since 1.0.0
*/
classes: ClassParser.Json[];

/**
* The enum parsers of this namespace in a Json compatible format.
* The enum parsers of this namespace in a json compatible format.
* @since 1.0.0
*/
enums: EnumParser.Json[];

/**
* The function parsers of this namespace in a Json compatible format.
* The function parsers of this namespace in a json compatible format.
* @since 1.0.0
*/
functions: FunctionParser.Json[];

/**
* The interface parsers of this namespace in a Json compatible format.
* The interface parsers of this namespace in a json compatible format.
* @since 1.0.0
*/
interfaces: InterfaceParser.Json[];

/**
* The namespace parsers of this namespace in a Json compatible format.
* The namespace parsers of this namespace in a json compatible format.
* @since 1.0.0
*/
namespaces: Json[];

/**
* The type alias parsers of this namespace in a Json compatible format.
* The type alias parsers of this namespace in a json compatible format.
* @since 1.0.0
*/
typeAliases: TypeAliasParser.Json[];

/**
* The variable parsers of this namespace in a Json compatible format.
* The variable parsers of this namespace in a json compatible format.
* @since 1.0.0
*/
variables: VariableParser.Json[];
Expand Down
2 changes: 1 addition & 1 deletion src/lib/structures/Parser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export namespace Parser {
name: string;

/**
* The source parser for this parser in a Json compatible format.
* The source parser for this parser in a json compatible format.
* @since 1.0.0
*/
source: SourceParser.Json | null;
Expand Down
14 changes: 7 additions & 7 deletions src/lib/structures/ProjectParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -449,43 +449,43 @@ export namespace ProjectParser {
changelog: string | null;

/**
* An array of class Json compatible objects for this project in a Json compatible format.
* An array of class Json compatible objects for this project in a json compatible format.
* @since 1.0.0
*/
classes: ClassParser.Json[];

/**
* An array of enum Json compatible objects for this project in a Json compatible format.
* An array of enum Json compatible objects for this project in a json compatible format.
* @since 1.0.0
*/
enums: EnumParser.Json[];

/**
* An array of function Json compatible objects for this project in a Json compatible format.
* An array of function Json compatible objects for this project in a json compatible format.
* @since 1.0.0
*/
functions: FunctionParser.Json[];

/**
* An array of interface Json compatible objects for this project in a Json compatible format.
* An array of interface Json compatible objects for this project in a json compatible format.
* @since 1.0.0
*/
interfaces: InterfaceParser.Json[];

/**
* An array of namespace Json compatible objects for this project in a Json compatible format.
* An array of namespace Json compatible objects for this project in a json compatible format.
* @since 1.0.0
*/
namespaces: NamespaceParser.Json[];

/**
* An array of type alias Json compatible objects for this project in a Json compatible format.
* An array of type alias Json compatible objects for this project in a json compatible format.
* @since 1.0.0
*/
typeAliases: TypeAliasParser.Json[];

/**
* An array of variable Json compatible objects for this project in a Json compatible format.
* An array of variable Json compatible objects for this project in a json compatible format.
* @since 1.0.0
*/
variables: VariableParser.Json[];
Expand Down
4 changes: 2 additions & 2 deletions src/lib/structures/TypeAliasParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -166,13 +166,13 @@ export namespace TypeAliasParser {
external: boolean;

/**
* The type parameters of this type alias in a Json compatible format.
* The type parameters of this type alias in a json compatible format.
* @since 1.0.0
*/
typeParameters: TypeParameterParser.Json[];

/**
* The type of this type alias in a Json compatible format.
* The type of this type alias in a json compatible format.
*/
type: TypeParser.Json;
}
Expand Down
2 changes: 1 addition & 1 deletion src/lib/structures/VariableParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ export namespace VariableParser {
external: boolean;

/**
* The type of this variable in a Json compatible format.
* The type of this variable in a json compatible format.
* @since 1.0.0
*/
type: TypeParser.Json;
Expand Down
2 changes: 1 addition & 1 deletion src/lib/structures/class-parser/ClassMethodParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ export namespace ClassMethodParser {
static: boolean;

/**
* The signature parsers of this method in a Json compatible format.
* The signature parsers of this method in a json compatible format.
* @since 1.0.0
*/
signatures: SignatureParser.Json[];
Expand Down
12 changes: 6 additions & 6 deletions src/lib/structures/class-parser/ClassParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -290,37 +290,37 @@ export namespace ClassParser {
abstract: boolean;

/**
* The `extends` type of this class in a Json compatible format.
* The `extends` type of this class in a json compatible format.
* @since 1.0.0
*/
extendsType: TypeParser.Json | null;

/**
* The `implements` type of this class in a Json compatible format.
* The `implements` type of this class in a json compatible format.
* @since 1.0.0
*/
implementsType: TypeParser.Json[];

/**
* The type parameter parsers of this class in a Json compatible format.
* The type parameter parsers of this class in a json compatible format.
* @since 6.0.0
*/
typeParameters: TypeParameterParser.Json[];

/**
* The constructor parser of this class in a Json compatible format.
* The constructor parser of this class in a json compatible format.
* @since 1.0.0
*/
construct: ClassConstructorParser.Json;

/**
* The property parsers of this class in a Json compatible format.
* The property parsers of this class in a json compatible format.
* @since 1.0.0
*/
properties: ClassPropertyParser.Json[];

/**
* The method parsers of this class in a Json compatible format.
* The method parsers of this class in a json compatible format.
* @since 1.0.0
*/
methods: ClassMethodParser.Json[];
Expand Down
2 changes: 1 addition & 1 deletion src/lib/structures/class-parser/ClassPropertyParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ export namespace ClassPropertyParser {
optional: boolean;

/**
* The type parser of this property in a Json compatible format.
* The type parser of this property in a json compatible format.
* @since 1.0.0
*/
type: TypeParser.Json;
Expand Down
4 changes: 2 additions & 2 deletions src/lib/structures/enum-parser/EnumParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export class EnumParser extends Parser {
namespaceParentId: this.namespaceParentId,
comment: this.comment.toJSON(),
external: this.external,
members: this.members
members: this.members.map((member) => member.toJSON())
};
}

Expand Down Expand Up @@ -154,7 +154,7 @@ export namespace EnumParser {
external: boolean;

/**
* The property parsers of this enum in a Json compatible format.
* The property parsers of this enum in a json compatible format.
*/
members: EnumMemberParser.Json[];
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export namespace InterfaceMethodParser {
parentId: number;

/**
* The signature parsers of this method in a Json compatible format.
* The signature parsers of this method in a json compatible format.
* @since 3.1.0
*/
signatures: SignatureParser.Json[];
Expand Down
4 changes: 2 additions & 2 deletions src/lib/structures/interface-parser/InterfaceParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -197,13 +197,13 @@ export namespace InterfaceParser {
typeParameters: TypeParameterParser.Json[];

/**
* The property parsers of this interface in a Json compatible format.
* The property parsers of this interface in a json compatible format.
* @since 1.0.0
*/
properties: InterfacePropertyParser.Json[];

/**
* The method parsers of this interface in a Json compatible format.
* The method parsers of this interface in a json compatible format.
* @since 3.1.0
*/
methods: InterfaceMethodParser.Json[];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ export namespace InterfacePropertyParser {
readonly: boolean;

/**
* The type of this property in a Json compatible format.
* The type of this property in a json compatible format.
* @since 1.0.0
*/
type: TypeParser.Json;
Expand Down
2 changes: 1 addition & 1 deletion src/lib/structures/misc/ParameterParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ export namespace ParameterParser {
optional: boolean;

/**
* The type of this parameter in a Json compatible format.
* The type of this parameter in a json compatible format.
* @since 1.0.0
*/
type: TypeParser.Json;
Expand Down
6 changes: 3 additions & 3 deletions src/lib/structures/misc/SignatureParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -174,19 +174,19 @@ export namespace SignatureParser {
comment: CommentParser.Json;

/**
* The type parameters of this signature in a Json compatible format.
* The type parameters of this signature in a json compatible format.
* @since 1.0.0
*/
typeParameters: TypeParameterParser.Json[];

/**
* The parameters of this signature in a Json compatible format.
* The parameters of this signature in a json compatible format.
* @since 1.0.0
*/
parameters: ParameterParser.Json[];

/**
* The return type of this signature in a Json compatible format.
* The return type of this signature in a json compatible format.
* @since 1.0.0
*/
returnType: TypeParser.Json;
Expand Down
4 changes: 2 additions & 2 deletions src/lib/structures/misc/TypeParameterParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,13 +134,13 @@ export namespace TypeParameterParser {
name: string;

/**
* The constraint of this type parameter in a Json compatible format.
* The constraint of this type parameter in a json compatible format.
* @since 1.0.0
*/
constraint: TypeParser.Json | null;

/**
* The default value of this type parameter in a Json compatible format.
* The default value of this type parameter in a json compatible format.
* @since 1.0.0
*/
default: TypeParser.Json | null;
Expand Down
2 changes: 1 addition & 1 deletion src/lib/structures/type-parsers/ArrayTypeParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export namespace ArrayTypeParser {
kind: TypeParser.Kind.Array;

/**
* The type of this array in a Json compatible format.
* The type of this array in a json compatible format.
* @since 1.0.0
*/
type: TypeParser.Json;
Expand Down
8 changes: 4 additions & 4 deletions src/lib/structures/type-parsers/ConditionalTypeParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,25 +117,25 @@ export namespace ConditionalTypeParser {
kind: TypeParser.Kind.Conditional;

/**
* The check type of this conditional type in a Json compatible format.
* The check type of this conditional type in a json compatible format.
* @since 1.0.0
*/
checkType: TypeParser.Json;

/**
* The extends type of this conditional type in a Json compatible format.
* The extends type of this conditional type in a json compatible format.
* @since 1.0.0
*/
extendsType: TypeParser.Json;

/**
* The type of this conditional type when the check type is true in a Json compatible format.
* The type of this conditional type when the check type is true in a json compatible format.
* @since 1.0.0
*/
trueType: TypeParser.Json;

/**
* The type of this conditional type when the check type is false in a Json compatible format.
* The type of this conditional type when the check type is false in a json compatible format.
* @since 1.0.0
*/
falseType: TypeParser.Json;
Expand Down
4 changes: 2 additions & 2 deletions src/lib/structures/type-parsers/IndexedAccessTypeParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,13 +85,13 @@ export namespace IndexedAccessTypeParser {
kind: TypeParser.Kind.IndexedAccess;

/**
* The object type of this indexed access type in a Json compatible format.
* The object type of this indexed access type in a json compatible format.
* @since 1.0.0
*/
objectType: TypeParser.Json;

/**
* The index type of this indexed access type in a Json compatible format.
* The index type of this indexed access type in a json compatible format.
* @since 1.0.0
*/
indexType: TypeParser.Json;
Expand Down
2 changes: 1 addition & 1 deletion src/lib/structures/type-parsers/IntersectionTypeParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export namespace IntersectionTypeParser {
kind: TypeParser.Kind.Intersection;

/**
* The types of this intersection type in a Json compatible format.
* The types of this intersection type in a json compatible format.
* @since 1.0.0
*/
types: TypeParser.Json[];
Expand Down
6 changes: 3 additions & 3 deletions src/lib/structures/type-parsers/MappedTypeParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -151,19 +151,19 @@ export namespace MappedTypeParser {
parameter: string;

/**
* The parameter type of this mapped type in a Json compatible format.
* The parameter type of this mapped type in a json compatible format.
* @since 1.0.0
*/
parameterType: TypeParser.Json;

/**
* The name type of this mapped type in a Json compatible format.
* The name type of this mapped type in a json compatible format.
* @since 1.0.0
*/
nameType: TypeParser.Json | null;

/**
* The template type of this mapped type in a Json compatible format.
* The template type of this mapped type in a json compatible format.
* @since 1.0.0
*/
templateType: TypeParser.Json;
Expand Down

0 comments on commit 4f8c019

Please sign in to comment.