From b71f03caf202fdddb66c964fe2bf013409738bd1 Mon Sep 17 00:00:00 2001 From: LuanRT Date: Wed, 15 Mar 2023 04:15:35 -0300 Subject: [PATCH] chore(docs): oops, fix a typo --- src/parser/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parser/README.md b/src/parser/README.md index 00fba3d1..616356b6 100644 --- a/src/parser/README.md +++ b/src/parser/README.md @@ -31,7 +31,7 @@ The parser is responsible for sanitizing and standardizing InnerTube responses w * [`generator.ts`](https://github.com/LuanRT/YouTube.js/blob/main/src/parser/generator.ts) - Used to generate missing nodes at runtime. * [`helpers.ts`](https://github.com/LuanRT/YouTube.js/blob/main/src/parser/helpers.ts) - Helper functions/classes for the parser. * [`parser.ts`](https://github.com/LuanRT/YouTube.js/blob/main/src/parser/parser.ts) - The core of the parser. -* [`nodes.ts`](https://github.com/LuanRT/YouTube.js/blob/main/src/parser/node.ts) - Contains a list of all the InnerTube nodes, which is used to determine the appropriate node for a given renderer. It's important to note that this file is automatically generated and should not be edited manually. +* [`nodes.ts`](https://github.com/LuanRT/YouTube.js/blob/main/src/parser/nodes.ts) - Contains a list of all the InnerTube nodes, which is used to determine the appropriate node for a given renderer. It's important to note that this file is automatically generated and should not be edited manually. * [`misc.ts`](https://github.com/LuanRT/YouTube.js/blob/main/src/parser/misc.ts) - Miscellaneous classes for. Also automatically generated. ### Clients