Skip to content
This repository was archived by the owner on Jun 18, 2024. It is now read-only.

Commit eb3d34b

Browse files
author
James McKinney
committed
Fix links whose URLs contain parentheses
1 parent 9b6e5d0 commit eb3d34b

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

api-basics.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,10 @@ APIs are driven by a set of specific technologies, making them easily understood
6464

6565
Since REST takes advantage of the same Internet mechanisms that are used to view regular web pages it has many advantages, resulting in faster implementations and easier for developers to understand. REST APIs allow you to take data and functionality available on your website and make these resources available through a Web API. Then, instead of returning HTML to represent these resources, the API returns data in one of two possible formats:
6666

67-
* [Extensible Markup Language (XML)](http://apievangelist.com/buildingblocks/extensible_markup_language_(xml)
68-
* [JavaScript Object Notation (JSON)](http://apievangelist.com/buildingblocks/javascript_object_notation_(json)
67+
<ul>
68+
<li><a href="http://apievangelist.com/buildingblocks/extensible_markup_language_(xml).php">Extensible Markup Language (XML)</a></li>
69+
<li><a href="http://apievangelist.com/buildingblocks/javascript_object_notation_(json).php">JavaScript Object Notation (JSON)</a></li>
70+
</ul>
6971

7072
Developers can then take this data and use in web and mobile applications. However XML and JSON are easily consumed by spreadsheets and other tools non-developers can use as well, making APIs accessible by anyone.
7173

glossary.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ A standard developed or adopted by voluntary consensus standards bodies, both do
133133

134134
### Parameter
135135

136-
A special kind of variable, used in a subroutine to refer to one of the pieces of data provided as input to the subroutine. The semantics for how parameters can be declared and how the arguments get passed to the parameters of subroutines are defined by the language, but the details of how this is represented in any particular computer system depend on the calling conventions of that system. —*[source](http://en.wikipedia.org/wiki/Parameter_(computer_science))*
136+
A special kind of variable, used in a subroutine to refer to one of the pieces of data provided as input to the subroutine. The semantics for how parameters can be declared and how the arguments get passed to the parameters of subroutines are defined by the language, but the details of how this is represented in any particular computer system depend on the calling conventions of that system. —*<a href="http://en.wikipedia.org/wiki/Parameter_(computer_science)">source</a>*
137137

138138
### RDF
139139

0 commit comments

Comments
 (0)