Skip to content

Commit

Permalink
Typo fix in class name. (#662)
Browse files Browse the repository at this point in the history
Summary:
<!-- Thanks for submitting a pull request! We appreciate you taking the time to work on these
changes. Please provide enough information so that others can review your pull request. The three
fields below are mandatory. -->

Typo fix in class name. The correct class name here is `SectionContext` and not SectionContent.

## Changelog

SectionContent -> SectionContext
Pull Request resolved: #662

Test Plan: Verified in PlaygroundActivity and buck build.

Reviewed By: arpitratan

Differential Revision: D21649885

Pulled By: topwu

fbshipit-source-id: 6f2d11174c03c05b0b2638f82d2958dc3b5fe014
  • Loading branch information
Trogious authored and facebook-github-bot committed May 19, 2020
1 parent 38bea31 commit 14182bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/_docs/sections-building-blocks.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ The Sections hierarchy becomes a “data source” for the `RecyclerCollectionCo

```java
final Component listComponent = RecyclerCollectionComponent.create(c)
.section(MyGroupSection.create(new SectionContent(c))
.section(MyGroupSection.create(new SectionContext(c))
.dataModel(...)
.build())
.build();
Expand Down

0 comments on commit 14182bf

Please sign in to comment.