Skip to content

Commit

Permalink
Fix typo in hello Proskomma tutorial re #1
Browse files Browse the repository at this point in the history
  • Loading branch information
mvahowe committed May 12, 2022
1 parent a4fb438 commit 5cd246b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/getting_started/tutorials/hello.rst
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ Modify your script as follows:
const fse = require('fs-extra');
const { Proskomma } = require('proskomma');
const pk = new Proskomma();
let content = fse.readFileSync(path.resolve(__dirname, './psa.usfm').toString();
let content = fse.readFileSync(path.resolve(__dirname, './psa.usfm')).toString();
const queryPk = async function (pk, query) {
const result = await pk.gqlQuery(query);
Expand Down Expand Up @@ -264,7 +264,7 @@ which tells us that the `addDocument` mutation succeeded. Now let's add a query
const fse = require('fs-extra');
const { Proskomma } = require('proskomma');
const pk = new Proskomma();
let content = fse.readFileSync(path.resolve(__dirname, './psa.usfm').toString();
let content = fse.readFileSync(path.resolve(__dirname, './psa.usfm')).toString();
const queryPk = async function (pk, query) {
const result = await pk.gqlQuery(query);
Expand Down

0 comments on commit 5cd246b

Please sign in to comment.