Fix the link for thrift definition
Project: http://git-wip-us.apache.org/repos/asf/storm/repo Commit: http://git-wip-us.apache.org/repos/asf/storm/commit/fcf21238 Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/fcf21238 Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/fcf21238 Branch: refs/heads/master Commit: fcf21238db6be31fef6b64845e5a2492e8b295c9 Parents: dfc3cd9 Author: Thilina Rathnayake <[email protected]> Authored: Tue Jul 7 16:35:36 2015 +0530 Committer: Thilina Rathnayake <[email protected]> Committed: Tue Jul 7 16:35:36 2015 +0530 ---------------------------------------------------------------------- docs/documentation/Structure-of-the-codebase.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/storm/blob/fcf21238/docs/documentation/Structure-of-the-codebase.md ---------------------------------------------------------------------- diff --git a/docs/documentation/Structure-of-the-codebase.md b/docs/documentation/Structure-of-the-codebase.md index 2980dd9..5da6039 100644 --- a/docs/documentation/Structure-of-the-codebase.md +++ b/docs/documentation/Structure-of-the-codebase.md @@ -21,7 +21,7 @@ Storm uses [this fork](https://github.com/nathanmarz/thrift/tree/storm) of Thrif Every spout or bolt in a topology is given a user-specified identifier called the "component id". The component id is used to specify subscriptions from a bolt to the output streams of other spouts or bolts. A [StormTopology](https://github.com/apache/storm/blob/master/storm-core/src/storm.thrift#L91) structure contains a map from component id to component for each type of component (spouts and bolts). -Spouts and bolts have the same Thrift definition, so let's just take a look at the [Thrift definition for bolts](https://github.com/apache/storm/blob/master/storm-core/src/storm.thrift#L79). It contains a `ComponentObject` struct and a `ComponentCommon` struct. +Spouts and bolts have the same Thrift definition, so let's just take a look at the [Thrift definition for bolts](https://github.com/apache/storm/blob/master/storm-core/src/storm.thrift#L102). It contains a `ComponentObject` struct and a `ComponentCommon` struct. The `ComponentObject` defines the implementation for the bolt. It can be one of three types:
