Skip to content

Commit 97e5111

Browse files
committed
typos
1 parent 9512583 commit 97e5111

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

md/5_writing_ops/dev_attachments/dev_attachments.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ An attachment file can be created by clicking on an Op and then clicking the cre
1111

1212
![create_attachment](img/attachment_files.png)
1313

14-
You then need to give your attachment a name that will later be used to access it's content in your Op.
14+
You then need to give your attachment a name that will later be used to access its content in your Op.
1515
An attachment named `my_attachment` will be accessible in the Op via `attachments["my_attachment"]`
1616

1717
## Editing Attachment
1818

19-
After you created the attachment, the cables-editor will open and let you edit it's content.
19+
After you created the attachment, the cables-editor will open and let you edit its content.
2020

2121
You can open the editor again later by clicking the edit button
2222

md/5_writing_ops/dev_libraries/dev_libraries.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ and start using the functionality in your Op.
2525

2626
Pick a type for your library. If unsure, read on [below](#librarytypes).
2727

28-
This is a great way to quickly test libraries in cables, there is a few caveats though:
28+
This is a great way to quickly test libraries in cables, there are a few caveats though:
2929

3030
* If the library is no longer available at the given URL, your Op will no longer work.
3131
* Sometimes you will run into [CORS-Issues](../../4_export_embed/cors) that might not be fixable by you, if you do not control the "other side".
@@ -43,7 +43,7 @@ You will have to consult the documentation of the module to find this kind of in
4343
### Op
4444

4545
Enter a name of any Op to load it's libraries when using your Op. This is useful when you are creating a collection of
46-
Ops that all need to load the same library but you don't want to add it to every individual op.
46+
Ops that all need to load the same library, but you don't want to add it to every individual op.
4747

4848
All libraries are loaded globally and all Ops have access to the global variables provided. This function just
4949
makes sure that you do not need a "LoadMyLibraryOp" before using other ops in your collection. These references to

0 commit comments

Comments
 (0)