@@ -11,13 +11,13 @@ late Activity janeActivity;
1111late Activity saraComment;
1212
1313Future <void > creatingNotificationActivities () async {
14- // Eric follows Jane
14+ // Eric follows Jane
1515 await ericFeed.follow (
1616 targetFid: janeFeed.fid,
1717 createNotificationActivity:
1818 true , // When true Jane's notification feed will be updated with follow activity
1919 );
20- // Eric comments on Jane's activity
20+ // Eric comments on Jane's activity
2121 await ericFeed.addComment (
2222 request: ActivityAddCommentRequest (
2323 comment: 'Agree!' ,
@@ -26,7 +26,7 @@ Future<void> creatingNotificationActivities() async {
2626 true , // When true Jane's notification feed will be updated with comment activity
2727 ),
2828 );
29- // Eric reacts to Jane's activity
29+ // Eric reacts to Jane's activity
3030 await ericFeed.addReaction (
3131 activityId: janeActivity.activityId,
3232 request: const AddReactionRequest (
@@ -35,7 +35,7 @@ Future<void> creatingNotificationActivities() async {
3535 true , // When true Jane's notification feed will be updated with reaction activity
3636 ),
3737 );
38- // Eric reacts to a comment posted to Jane's activity by Sara
38+ // Eric reacts to a comment posted to Jane's activity by Sara
3939 await ericFeed.addCommentReaction (
4040 commentId: saraComment.activityId,
4141 request: const AddCommentReactionRequest (
0 commit comments