Skip to content

Commit 4fb1aef

Browse files
committed
Use consistent syntax for placeholders
Elsewhere we use angle brackets for placeholder values. Let's use them here as well.
1 parent 20ae4c6 commit 4fb1aef

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

content/guides/getting-started.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -264,8 +264,8 @@ templates].
264264

265265
The resulting repository will be found at `https://github.com/<your
266266
username>/blog`. To create a repository under an organization for which you're
267-
an owner, just change the API method from `/user/repos` to `/orgs/{org
268-
name}/repos`.
267+
an owner, just change the API method from `/user/repos` to `/orgs/<org
268+
name>/repos`.
269269

270270
Next, let's fetch our newly created repository:
271271

@@ -297,7 +297,7 @@ authenticated user. To see all your issues, call `GET /issues`:
297297
https://api.github.com/issues
298298

299299
To get only the issues under one of your GitHub organizations, call `GET
300-
/orgs/{org}/issues`:
300+
/orgs/<org>/issues`:
301301

302302
curl -i -H 'Authorization: token 5199831f4dd3b79e7c5b7e0ebe75d67aa66e79d4' \
303303
https://api.github.com/orgs/rails/issues

0 commit comments

Comments
 (0)