From 7b2c3dcb8855fd9a1b2834c683741cb9eeea7a0d Mon Sep 17 00:00:00 2001 From: spitemim <69088069+spitemim@users.noreply.github.com> Date: Thu, 13 Oct 2022 05:54:19 -0400 Subject: [PATCH] fix unbalanced quotes this is bugging me --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 21eea6d..d42bbb6 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ const pirata = require('pirata'); pirata.search("something", function(err, res) { - // res: [{name: "something, seeds: 123, leechs: 33, magnet: "linkmagnet" }] + // res: [{name: "something", seeds: 123, leechs: 33, magnet: "linkmagnet" }] }); ``` @@ -57,4 +57,4 @@ In case of error, pirata return an error object which contains an error code { code: 'PARSER_ERROR' } -``` \ No newline at end of file +```