fix: Comment typos

Signed-off-by: Adam Harvey <adaharve@cisco.com>
This commit is contained in:
Adam Harvey
2023-04-29 14:00:35 -04:00
parent 87a0b37aa7
commit 38235817a3
2 changed files with 2 additions and 2 deletions
@@ -209,7 +209,7 @@ describe('confluence:transform:markdown', () => {
expect(writeFile).toHaveBeenCalledTimes(1);
});
it('shoud fail on the first fetch call with response.ok set to false', async () => {
it('should fail on the first fetch call with response.ok set to false', async () => {
const options = {
reader,
integrations,
@@ -107,7 +107,7 @@ export const createConfluenceToMarkdownAction = (options: {
`Could not find document ${url}. Please check your input.`,
);
}
// This gets attachements for the confluence page if they exist
// This gets attachments for the confluence page if they exist
const getDocAttachments = await fetchConfluence(
`/rest/api/content/${getConfluenceDoc.results[0].id}/child/attachment`,
config,