Skip to content

Commit 1a5401a

Browse files
authored
Merge pull request #43 from SocketDev/philipp/fix-typos
Fix README typos
2 parents 95be734 + 0564818 commit 1a5401a

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
@@ -112,7 +112,7 @@ Export a Socket SBOM as an SPDX SBOM
112112

113113
fullscans.get(org_slug)
114114
"""""""""""""""""""""""
115-
Retrieve the Fullscans information for around Organization
115+
Retrieve the Fullscans information for an Organization
116116

117117
**Usage:**
118118

@@ -286,7 +286,7 @@ Retrieve the dependencies for the organization associated with the API Key
286286
]
287287
params = {
288288
"repository": "username/repo-name",
289-
"branch": "dependency-branch
289+
"branch": "dependency-branch"
290290
}
291291
print(socket.dependencies.post(file_names, params))
292292
@@ -297,7 +297,7 @@ Retrieve the dependencies for the organization associated with the API Key
297297

298298
repos.get()
299299
"""""""""""
300-
Get a list of information about the tracked repositores
300+
Get a list of information about the tracked repositories
301301

302302
**Usage:**
303303

@@ -309,7 +309,7 @@ Get a list of information about the tracked repositores
309309
310310
**PARAMETERS:**
311311

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

347347
repos.repo()
348348
""""""""""""
349-
Get a list of information about the tracked repositores
349+
Get a list of information about the tracked repositories
350350

351351
**Usage:**
352352

353353
.. code-block:: python
354354
355355
from socketdev import socketdev
356356
socket = socketdev(token="REPLACE_ME")
357-
print(socket.repos.repo(org_slug="example", repo_name="example-repo")
357+
print(socket.repos.repo(org_slug="example", repo_name="example-repo"))
358358
359359
repos.update()
360360
""""""""""""""
@@ -396,7 +396,7 @@ Delete a Socket Repository
396396
397397
from socketdev import socketdev
398398
socket = socketdev(token="REPLACE_ME")
399-
print(socket.repos.delete(org_slug="example", repo_name="example-repo")
399+
print(socket.repos.delete(org_slug="example", repo_name="example-repo"))
400400
401401
**PARAMETERS:**
402402

@@ -520,7 +520,7 @@ Create a new project health report with the provided files
520520

521521
Deprecated: repositories.get()
522522
""""""""""""""""""""""""""""""
523-
Get a list of information about the tracked repositores
523+
Get a list of information about the tracked repositories
524524

525525
**Usage:**
526526

0 commit comments

Comments
 (0)