Skip to content

Commit 809d542

Browse files
committed
boom
1 parent 737e715 commit 809d542

File tree

9 files changed

+52
-52
lines changed

9 files changed

+52
-52
lines changed

favicon.ico

-2 Bytes
Binary file not shown.

shared/images/blacktocat.svg

Lines changed: 21 additions & 21 deletions
Loading

shared/images/footer-logo.svg

Lines changed: 21 additions & 21 deletions
Loading

shared/js/documentation.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ $(function() {
4646
$('#js-sidebar .js-accordion-list .js-topic h3 a').click(function(){
4747
var clickedTopic = $(this).parents('.js-topic'),
4848
topicGuides = clickedTopic.find('.js-guides li')
49-
49+
5050
if(activeItem != clickedTopic.index()){
5151
if(helpList.eq(activeItem)){
5252
helpList.eq(activeItem).find('.js-guides li').toggle(100)

v3/git/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ <h1 id="git-db-api">Git DB API</h1>
4848

4949
<p><img src="http://git-scm.com/figures/18333fig0904-tn.png" alt="git db"></p>
5050

51-
<p>For more information on the Git object database, please read the
51+
<p>For more information on the Git object database, please read the
5252
<a href="http://git-scm.com/book/ch9-0.html">Git Internals</a> chapter of
5353
the Pro Git book.</p>
5454

v3/git/tags/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ <h2 id="create-a-tag-object">Create a Tag Object</h2>
7070
makes a tag in Git. If you want to create an annotated tag in Git,
7171
you have to do this call to create the tag object, and then create
7272
the <code>refs/tags/[tag]</code> reference. If you want to create a lightweight
73-
tag, you simply have to create the reference - this call would be
73+
tag, you simply have to create the reference - this call would be
7474
unnecessary.</p>
7575

7676
<pre><code>POST /repos/:user/:repo/git/tags

v3/pulls/comments/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ <h1 id="pull-request-review-comments-api">Pull Request Review Comments API</h1>
3636
<p>Pull Request Review Comments are comments on a portion of the unified
3737
diff. These are separate from Commit Comments (which are applied
3838
directly to a commit, outside of the Pull Request view), and Issue
39-
Comments (which do not reference a portion of the unified diff). </p>
39+
Comments (which do not reference a portion of the unified diff).</p>
4040

4141
<p>Pull Request Review Comments leverage <a href="#custom-mime-types">these</a> custom mime
4242
types. You can read more about the use of mime types in the API

v3/repos/forks/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ <h3 id="parameters-1">Parameters</h3>
102102
</dl><h3 id="response-1">Response</h3>
103103

104104
<p>Forking a Repository happens asynchronously. Therefore, you may have to wait
105-
a short period before accessing the git objects. If this takes longer than
105+
a short period before accessing the git objects. If this takes longer than
106106
5 minutes, be sure to <a href="https://github.com/contact">contact Support</a>.</p>
107107

108108
<pre class="headers"><code>Status: 202 Accepted

v3/repos/hooks/index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ <h1 id="repo-hooks-api">Repo Hooks API</h1>
6666
Fork Queue.</li>
6767
<li>
6868
<code>member</code> - Any time a User is added as a collaborator to a
69-
non-Organization Repository. </li>
69+
non-Organization Repository.</li>
7070
<li>
7171
<code>public</code> - Any time a Repository changes from private to public.</li>
7272
</ul><p>The payloads for all of the hooks mirror <a href="/v3/events/types/">the payloads for the Event
@@ -75,7 +75,7 @@ <h1 id="repo-hooks-api">Repo Hooks API</h1>
7575

7676
<p>For a Hook to go through, the Hook needs to be configured to trigger for
7777
an event, and the Service has to listen to it. The Services are all
78-
part of the open source <a href="https://github.com/github/github-services">github-services</a> project. Most of the Services only listen for <code>push</code> events. However, the generic <a href="https://github.com/github/github-services/blob/master/services/web.rb">Web Service</a> listens for all events. Other services like the <a href="https://github.com/github/github-services/blob/master/services/irc.rb">IRC Service</a> may only listen for <code>push</code>, <code>issues</code>, and <code>pull_request</code> events. </p>
78+
part of the open source <a href="https://github.com/github/github-services">github-services</a> project. Most of the Services only listen for <code>push</code> events. However, the generic <a href="https://github.com/github/github-services/blob/master/services/web.rb">Web Service</a> listens for all events. Other services like the <a href="https://github.com/github/github-services/blob/master/services/irc.rb">IRC Service</a> may only listen for <code>push</code>, <code>issues</code>, and <code>pull_request</code> events.</p>
7979

8080
<h2 id="list">List</h2>
8181

@@ -222,11 +222,11 @@ <h3 id="input-1">Input</h3>
222222
<dt><code>add_events</code></dt>
223223
<dd>
224224
<em>Optional</em> <strong>array</strong> - Determines a list of events to be added to the
225-
list of events that the Hook triggers for. </dd>
225+
list of events that the Hook triggers for.</dd>
226226
<dt><code>remove_events</code></dt>
227227
<dd>
228228
<em>Optional</em> <strong>array</strong> - Determines a list of events to be removed from the
229-
list of events that the Hook triggers for. </dd>
229+
list of events that the Hook triggers for.</dd>
230230
<dt><code>active</code></dt>
231231
<dd>
232232
<em>Optional</em> <strong>boolean</strong> - Determines whether the hook is actually
@@ -292,7 +292,7 @@ <h2 id="pubsubhubbub">PubSubHubbub</h2>
292292

293293
<p>GitHub can also serve as a <a href="http://code.google.com/p/pubsubhubbub/">PubSubHubbub</a> hub for all repositories. PSHB is a simple publish/subscribe protocol that lets servers register to receive updates when a topic is updated. The updates are sent with an HTTP POST request to a callback URL. Topic URLs for a GitHub repository’s pushes are in this format:</p>
294294

295-
<pre><code>https://github.com/:user/:repo/events/:event
295+
<pre><code>https://github.com/:user/:repo/events/:event
296296
</code></pre>
297297

298298
<p>The event can be any Event string that is listed at the top of this

0 commit comments

Comments
 (0)