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

Commit

Permalink
Fixing mixed up typing
Browse files Browse the repository at this point in the history
Summary:
While amending diff in phabricator I got typing mixed up, this PR fixes it
Closes #1485

Differential Revision: D6221529

fbshipit-source-id: 30087648e3ee784cedb89f2b59591c4384f52ff2
  • Loading branch information
mitermayer authored and facebook-github-bot committed Nov 2, 2017
1 parent b0f00ff commit 3461269
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/model/immutable/ContentBlock.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ const {List, Map, OrderedSet, Record, Repeat} = Immutable;
const EMPTY_SET = OrderedSet();

type ContentBlockConfig = {
key?: DraftBlockType,
type?: string,
key?: string,
type?: DraftBlockType,
text?: string,
characterList?: List<CharacterMetadata>,
depth?: number,
Expand Down

0 comments on commit 3461269

Please sign in to comment.