Skip to content

Commit 0564818

Browse files
committed
Fix README typos
1 parent 09ca42d commit 0564818

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.rst

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ Export a Socket SBOM as an SPDX SBOM
122122

123123
fullscans.get(org_slug)
124124
"""""""""""""""""""""""
125-
Retrieve the Fullscans information for around Organization
125+
Retrieve the Fullscans information for an Organization
126126

127127
**Usage:**
128128

@@ -296,7 +296,7 @@ Retrieve the dependencies for the organization associated with the API Key
296296
]
297297
params = {
298298
"repository": "username/repo-name",
299-
"branch": "dependency-branch
299+
"branch": "dependency-branch"
300300
}
301301
print(socket.dependencies.post(file_names, params))
302302
@@ -307,7 +307,7 @@ Retrieve the dependencies for the organization associated with the API Key
307307

308308
repos.get()
309309
"""""""""""
310-
Get a list of information about the tracked repositores
310+
Get a list of information about the tracked repositories
311311

312312
**Usage:**
313313

@@ -319,7 +319,7 @@ Get a list of information about the tracked repositores
319319
320320
**PARAMETERS:**
321321

322-
- **sort** - The key to sort on froom the repo properties. Defaults to `created_at`
322+
- **sort** - The key to sort on from the repo properties. Defaults to `created_at`
323323
- **direction** - Can be `desc` or `asc`. Defaults to `desc`
324324
- **per_page** - Integer between 1 to 100. Defaults to `10`
325325
- **page** - Integer page number defaults to `1`. If there are no more results it will be `0`
@@ -356,15 +356,15 @@ Create a new Socket Repository
356356

357357
repos.repo()
358358
""""""""""""
359-
Get a list of information about the tracked repositores
359+
Get a list of information about the tracked repositories
360360

361361
**Usage:**
362362

363363
.. code-block:: python
364364
365365
from socketdev import socketdev
366366
socket = socketdev(token="REPLACE_ME")
367-
print(socket.repos.repo(org_slug="example", repo_name="example-repo")
367+
print(socket.repos.repo(org_slug="example", repo_name="example-repo"))
368368
369369
repos.update()
370370
""""""""""""""
@@ -406,7 +406,7 @@ Delete a Socket Repository
406406
407407
from socketdev import socketdev
408408
socket = socketdev(token="REPLACE_ME")
409-
print(socket.repos.delete(org_slug="example", repo_name="example-repo")
409+
print(socket.repos.delete(org_slug="example", repo_name="example-repo"))
410410
411411
**PARAMETERS:**
412412

@@ -530,7 +530,7 @@ Create a new project health report with the provided files
530530

531531
Deprecated: repositories.get()
532532
""""""""""""""""""""""""""""""
533-
Get a list of information about the tracked repositores
533+
Get a list of information about the tracked repositories
534534

535535
**Usage:**
536536

0 commit comments

Comments
 (0)