Closed cmbritten closed 4 years ago
Describe the bug Your sample documentation is very helpful thanks. However, in your sample code one of the 'single quotes' ['] registers instead as an apostrophe, throwing an error. It could be updated for clarity!
To Reproduce Steps to reproduce the behavior:
// You can get the collectionName and documentName from the shortcode attribute const collectionName = 'users'; const documentName = ‘document-1'
It should be corrected to remove the apostrophe before document-1 and use single quote.
// You can get the collectionName and documentName from the shortcode attribute const collectionName = 'users'; const documentName ='document-1'
Thought this might help others using your docs! Thanks for the great plugin.
Thank @chriswhystle, the typo is fixed.
Describe the bug Your sample documentation is very helpful thanks. However, in your sample code one of the 'single quotes' ['] registers instead as an apostrophe, throwing an error. It could be updated for clarity!
To Reproduce Steps to reproduce the behavior:
// You can get the collectionName and documentName from the shortcode attribute const collectionName = 'users'; const documentName = ‘document-1'
It should be corrected to remove the apostrophe before document-1 and use single quote.
// You can get the collectionName and documentName from the shortcode attribute const collectionName = 'users'; const documentName ='document-1'
Thought this might help others using your docs! Thanks for the great plugin.