Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix broken tutorials link #137

Merged
merged 1 commit into from
Apr 29, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/_jsdoc/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ The `fabric-shim` provides the *chaincode interface*, a lower level API for impl

To confirm that the `fabric-shim` maintains API and functional compatibility with previous versions of Hyperledger Fabric.

Detailed explanation on the concept and programming model can be found here: [http://hyperledger-fabric.readthedocs.io/en/latest/chaincode.html](http://hyperledger-fabric.readthedocs.io/en/latest/chaincode.html).
A more detailed explanation on the concept and programming model can be found in the [smart contract processing topic](https://hyperledger-fabric.readthedocs.io/en/latest/developapps/smartcontract.html).

## Contract Interface

Expand All @@ -25,7 +25,7 @@ npm install --save fabric-contract-api

### Usage

Implement a class that ends the `contract` class, a constructor is needed.
Implement a class that ends the `contract` class, a constructor is needed.
The other functions will be invokable functions of your Smart Contract

```javascript
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ in various programming languages. There are two other smart contract SDKs availa

## Documentation

Detailed explanation on the concepts and programming model for smart contracts can be found in the [Chaincode Tutorials section of the Hyperledger Fabric documentation](http://hyperledger-fabric.readthedocs.io/en/latest/chaincode.html).
Detailed explanation on the concepts and programming model for smart contracts can be found in the [Chaincode for developers tutorial in the Hyperledger Fabric documentation](https://hyperledger-fabric.readthedocs.io/en/latest/chaincode.html).

API documentation is available for each release:

Expand Down