Skip to content
This repository has been archived by the owner on Sep 29, 2023. It is now read-only.

Commit

Permalink
Merge pull request #135 from appwrite/fix-broken-link
Browse files Browse the repository at this point in the history
Specs bug fix
  • Loading branch information
Meldiron authored Jan 20, 2022
2 parents 3a424c7 + 015ec6d commit 456c63a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/views/docs/main.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ $getSpecsUrl = function($type, $platform) use ($latestVersion) {

<p>The Appwrite API is organized around REST. Our API has predictable resource-oriented URLs, accepts form-encoded or JSON-encoded request bodies, returns JSON-encoded responses, and uses standard HTTP response codes, authentication, and verbs.</p>

<p>Specifications for the Appwrite API are available in multiple formats, including Open API 3 for <a href="<?php echo getSpecsUrl('open-api3', 'client'); ?>">clients</a> or <a href="<?php echo getSpecsUrl('open-api3', 'server'); ?>">servers</a> and Swagger2 for <a href="<?php echo getSpecsUrl('swagger2', 'client'); ?>">clients</a> or <a href="<?php echo getSpecsUrl('swagger2', 'server'); ?>">servers</a>.</p>
<p>Specifications for the Appwrite API are available in multiple formats, including Open API 3 for <a href="<?php echo $getSpecsUrl('open-api3', 'client'); ?>">clients</a> or <a href="<?php echo $getSpecsUrl('open-api3', 'server'); ?>">servers</a> and Swagger2 for <a href="<?php echo $getSpecsUrl('swagger2', 'client'); ?>">clients</a> or <a href="<?php echo $getSpecsUrl('swagger2', 'server'); ?>">servers</a>.</p>
</div>

<div class="margin-bottom-large">
Expand Down

0 comments on commit 456c63a

Please sign in to comment.